INITCAP function (extension)
Syntax
INITCAP ( char_expression )
Description
The scalar function INITCAP returns the result of the argument character expression after converting the first character to uppercase and the subsequent characters to lowercase.
Example
SELECT INITCAP (name)
FROM customer ;
Notes