oracle function LOWER (c1)

[Function]: All lowercase string

Parameters: c1, character expression

[Back]: Character

[Example]

SQL> select lower('AaBbCcDd')AaBbCcDd from dual;

 

AABBCCDD

--------

aabbccdd

 

[Similar] UPPER () string all uppercase.

Guess you like

Origin www.cnblogs.com/fanweisheng/p/11119959.html
C1