PL/SQL Initcap
Oracle PL/SQL Initcap Function
The Initcap function sets the first character in each word to uppercase.
The Initcap Function syntax:
initcap( string )
Example:
select initcap('oracle tutorial code') from dual; Oracle Tutorial Code select initcap('ORACLE TUTORIAL CODE') from dual; Oracle Tutorial Code