How to convert a String first character in uppercase in oracle

In Oracle INITCAP function sets the first character in each word to uppercase and the rest to lowercase. The syntax for the INITCAP function is: INITCAP(string).

For Example

SELECT INITCAP('SHAHEER') FROM DUAL;

Result: Shaheer

Comments