I have a statement that reads
select inv_id, initcap(short_description),
from ecat_items
Which give the short description the first letter capitalization which I want the problem I'm running into is descriptions with apostrophes within them.
children's boots gets displayed as Children'S Boots.
I don't want the 'S capitilized. Anyone know of a way to get both the first letter capitlization result but keep the grammer/apostrophed letters from becoming capitalized as a 'new' word?
Thanks
Gina
select inv_id, initcap(short_description),
from ecat_items
Which give the short description the first letter capitalization which I want the problem I'm running into is descriptions with apostrophes within them.
children's boots gets displayed as Children'S Boots.
I don't want the 'S capitilized. Anyone know of a way to get both the first letter capitlization result but keep the grammer/apostrophed letters from becoming capitalized as a 'new' word?
Thanks
Gina