Character String Functions Oracle PLSQL Tutorial

The general format for this function is:

SQL> --INITCAP(string)
SQL>
SQL> SELECT INITCAP('capitals') FROM dual;
INITCAP(
--------
Capitals
SQL>