I am trying to change all city fields to proper case ie: san francisco to San Francisco. I can only find functions UCASE and LCASE but none for proper case.
I tried without success:
UPDATE table1 SET substring(city,1,1) = UCASE(substring(country,1,1))
Any suggestions on this?
I tried without success:
UPDATE table1 SET substring(city,1,1) = UCASE(substring(country,1,1))
Any suggestions on this?