I am finishing up on performing an Oraclectomy on a bunch of legacy java code (don't ask why the DBA got stuck w/this - sore subject) and have one outstanding problem to solve:
Oracle has a function, initcap(), which capitalizes the 1st character of
each word and lowercases the rest. for example, initcap('ABC DEF GHI') =
'Abc Def Ghi'.
I have not found a (my)sql way to do this. did I overlook something or do I
need to do this client side after I fetch the results?
