1. 程式人生 > >ORACLE SQL 函式 INITCAP()

ORACLE SQL 函式 INITCAP()

INITCAP()

  假設c1為一字串.函式INITCAP()是將每個單詞的第一個字母大寫,其它字母變為小寫返回.

  單詞由空格,控制字元,標點符號等非字母符號限制.

select initcap('hello world') from dual;

結果

INITCAP('HE

  -----------

  Hello World
select initcap('漢ello world,漢elloworld,hello漢world,hello 漢world') from dual;

結果

INITCAP('漢ELLOWORLD,漢ELLOWORLD,HELLO漢WORLD,HELLO

  ---------------------------------------------------

  漢Ello World,漢Elloworld,Hello漢World,Hello 漢World