Hi all. I have an existing table 'people_table', with a field 'full_name'.
Many records have the 'full_name' field populated with incorrect casing. e.g. 'fred Jones' or 'fred jones' or 'Fred jones'.
I can find these errant entries with:
SELECT * FROM people_table WHERE full_name REGEXP BINARY '^[a-z]';
Q. How can I capitalize the first letter of each word found? e.g. 'fred jones' becomes 'Fred Jones'.
Thanks for any help.