개인적인 정리

[Oracle] LOWER() 본문

DB/ORACLE

[Oracle] LOWER()

yeon.Biju 2020. 4. 8. 21:51

오라클 LOWER()

 

LOWER()

   - 문자열을 소문자로 바꿔주는 함수

 

LOWER(char)

의 형태

 

LOWER returns char, with all letters lowercase. char can be any of the data types CHAR, VARCHAR2, NCHAR, NVARCHAR2, CLOB  or NCLOB. The return value is the same data type as char. The database sets the case of the chracters based on the binary mapping defined for the underlying character set. For linguistic-sensitive lowercase, refer to NLS_LOWER.

 

SQL > SELECT LOWER('MR. SCOTT') FROM DUAL ;

   --> mr. scott

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

[Oracle] MEDIAN()  (0) 2020.04.09
[Oracle] MAX()  (0) 2020.04.09
[Oracle] LTRIM()  (0) 2020.04.08
[Oracle] LPAD()  (0) 2020.04.08
[Oracle] LOG()  (0) 2020.04.08
Oracle LOCALTIMESTAMP()  (0) 2020.04.08
Oracle LNNVL()  (0) 2020.04.08
Oracle LN()  (0) 2020.04.08
Comments