Initcap: changes the first (initial) letter of a word (string) or series of words into uppercase
SQL> -- Initcap: changes the first (initial) letter of a word (string) or series of words into uppercase.
SQL>
SQL> SELECT INITCAP('capitals') FROM dual;
INITCAP(
--------
Capitals