Forum Moderators: coopster
The following works fine for replacing "normal" words in a MySQL table:
UPDATE tablename SET fieldname=(REPLACE (fieldname, 'oldword','newword'));
However, I have a situation where I need to change every comma that appears as text in a particular field to a space.
How would I do that?
Thanks!