HowdeeDoodee
Technical User
I have a MySql table and I need to change all lowercase letters preceded by a left parens to uppercase in one field. I want to change (cATS) to (CATS), (dOGS) to (DOGS), and so on in this one field.
The following REPLACE query does not do the job.
UPDATE `TableTest` SET `Sub2` = REPLACE `Sub2`, '(c ', '(C')
WHERE `Sub2` LIKE '%(c%'
Can anyone give me the proper syntax? Thank you in advance for any replies.
The following REPLACE query does not do the job.
UPDATE `TableTest` SET `Sub2` = REPLACE `Sub2`, '(c ', '(C')
WHERE `Sub2` LIKE '%(c%'
Can anyone give me the proper syntax? Thank you in advance for any replies.