개인적인 정리

Oracle INITCAP() 본문

DB/ORACLE

Oracle INITCAP()

yeon.Biju 2020. 4. 6. 13:19

오라클 INITCAP()

 

INITCAP()

   -

 

INITCAP(char)

의 형태

 

INITCAP returns char, with the first letter of each word in uppercase, all other letters in lowercase. Words are delimited by white space or characters that are not alphanumeric.

 

char can be of any of the data type CHAR, VARCHAR2, NCHAR, or NVARCHAR2. The return value is the same data type as char. The database set the case of the initial characters based on the binary mapping defined for the underlying character set. For linguistic-sensitive uppercase and lowercase, refer to NLS_INITCAP

 

This function does not support CLOB data directly. However, CLOBs can be passed in as arguments through implicit data conversion.

 

SQL > SELECT INITCAP('the soap') FROM DUAL ;

   --> The Soap

'DB > ORACLE' 카테고리의 다른 글

ORACLE LAST_DAY()  (0) 2020.04.06
ORACLE LAST()  (0) 2020.04.06
Oracle INSTR()  (0) 2020.04.06
Oracle INSERTCHILDXML()  (0) 2020.04.06
Oracle GROUP_ID()  (0) 2020.04.06
Oracle GREATEST()  (0) 2020.03.30
ORACLE FLOOR()  (0) 2020.03.30
ORACLE FIRST()  (0) 2020.03.30
Comments