oracle function INITCAP (c1)

[Function] returns the first letter of the string and the string of uppercase, lowercase other;

Parameters c1 character expression

 

[Back] character

 

[Example]

 SQL> select initcap('smith abc aBC') upp from dual;

 

UP

-----

Smith Abc Abc

Guess you like

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