oracle

Thursday, 20 April 2017

SQL: Initcap()

initcap() parameter is also case manipulation function of character function.

This parameter changes all first characters to capital and other remains small

Example:

select initcap('hello world') from dual;

Result:

Hello World

No comments:

Post a Comment