Oracle函數之常見單行字串函數

來源:互聯網
上載者:User

單行字串函數用於操作字串資料,他們大多數有一個或多個參數,其中絕大多數返回字串 ascii()

c1是一字串,返回c1第一個字母的ascii碼,他的逆函數是chr() select ascii(''a'') big_a,ascii(''z'') big_z from empbig_a big_z65 122

chr()[nchar_cs]

i是一個數字,函數返回十進位表示的字元 select chr(65),chr(122),chr(223) from empchr65 chr122 chr223a z b

concat(,)

c1,c2均為字串,函數將c2串連到c1的後面,如果c1為null,將返回c2.如果c2為null,則返回c1,如果c1、c2都為null,則返回null。他和操作符||返回的結果相同 select concat(''slobo '',''svoboda'') username from dualusernameslobo syoboda

initcap()

c1為一字串。函數將每個單詞的第一個字母大寫其它字母小寫返回。單詞由空格,控制字元,標點符號限制。 select initcap(''veni,vedi,vici'') ceasar from dualceasarveni,vedi,vici

instr(,[,[,]])

c1,c2均為字串,i,j為整數。函數返回c2在c1中第j次出現的位置,搜尋從c1的第i個字元開始。當沒有發現需要的字元時返回0,如果i為負數,那麼搜尋將從右至左進行,但是位置的計算還是從左至右,i和j的預設值為1. select instr(''mississippi'',''i'',3,3) from dualinstr(''mississippi'',''i'',3,3)11select instr(''mississippi'',''i'',-2,3) from dualinstr(''mississippi'',''i'',3,3)2

instrb(,[,i[,j])

與instr()函數一樣,只是他返回的是位元組,對於單位元組instrb()等於instr() length()

c1為字串,返回c1的長度,如果c1為null,那麼將返回null值。 select length(''ipso facto'') ergo from dualergo10

lengthb()

與length()一樣,返回位元組。 lower()

返回c的小寫字元,經常出現在where子串中

select lower(colorname) from itemdetail where lower(colorname) like ''%white%''colornamewinterwhite

lpad(,[,])

c1,c2均為字串,i為整數。在c1的左側用c2字串補足致長度i,可多次重複,如果i小於c1的長度,那麼只返回i那麼長的c1字元,其他的將被截去。c2的預設值為單空格,參見rpad。 select lpad(answer,7,'''') padded,answer unpadded from question;padded unpadded yes yesno nomaybe maybe

ltrim(,)

把c1中最左邊的字元去掉,使其第一個字元不在c2中,如果沒有c2,那麼c1就不會改變。

select ltrim(''mississippi'',''mis'') from dualltrppi

rpad(,[,])

在c1的右側用c2字串補足致長度i,可多次重複,如果i小於c1的長度,那麼只返回i那麼長的c1字元,其他的將被截去。c2的預設值為單空格,其他與lpad相似 rtrim(,)

把c1中最右邊的字元去掉,使其第後一個字元不在c2中,如果沒有c2,那麼c1就不會改變。 replace(,[,])

c1,c2,c3都是字串,函數用c3代替出現在c1中的c2後返回。 select replace(''uptown'',''up'',''down'') from dualreplacedowntown

stbstr(,[,])

c1為一字串,i,j為整數,從c1的第i位開始返回長度為j的子字串,如果j為空白,則直到串的尾部。

select substr(''message'',1,4) from dualsubsmess

substrb(,[,])

與substr大致相同,只是i,j是以位元組計算。 soundex()

返回與c1發音相似的詞 select soundex(''dawes'') dawes soundex(''daws'') daws, soundex(''dawson'') from dualdawes daws dawsond200 d200 d250

translate(,,)

將c1中與c2相同的字元以c3代替 select translate(''fumble'',''uf'',''ar'') test from dualtextramble

trim([[]] from c3)

將c3串中的第一個,最後一個,或者都刪除。 select trim('' space padded '') trim from dual trimspace padded

upper()

返回c1的大寫,常出現where子串中select name from dual where upper(name) like ''ki%''nameking

(

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.