Simple demo for INITAP: sets the first character in each word to uppercase and the rest to lowercase
SQL> SQL> SELECT INITCAP('YOU TODAY') AS INITCAP FROM Dual; INITCAP --------- You Today SQL>