Forum Moderators: coopster
I need to find and replace all the letters like "box" to "boxes" in filed1
What is the command please?
eelix
If you wanted to run a search and replace on data in a table, but not delete the original data use REPLACE:
UPDATE table SET field = REPLACE(field, 'box', 'boxes');
dc