The initcap function sets the first character in each word to uppercase and
the rest to lowercase.
The syntax for the initcap function is:
initcap (string1)
string1 is the string argument whose first character in each word will
be converted to uppercase and all remaining characters converted to lowercase.
For example:
initcap ('tech on the net'); would return 'Tech On The Net'
initcap ('GEORGE BURNS'); would return 'George Burns'
I want to find out what is equivalent in DB2 ??????
How do I implement this in Db2 ...???
Thanks...
the rest to lowercase.
The syntax for the initcap function is:
initcap (string1)
string1 is the string argument whose first character in each word will
be converted to uppercase and all remaining characters converted to lowercase.
For example:
initcap ('tech on the net'); would return 'Tech On The Net'
initcap ('GEORGE BURNS'); would return 'George Burns'
I want to find out what is equivalent in DB2 ??????
How do I implement this in Db2 ...???
Thanks...