vote up 3 vote down star

What Mysql query will do a text search and replace in one particular field in a table?

ie search for 'foo' and replace with 'bar' so a record with a field with the value : 'hello foo' becomes: 'hello bar'.

flag

3 Answers

vote up 6 vote down check
update table set field = replace(field, 'foo', 'bar') where instr(field, 'foo') > 0;
link|flag
perfect answer, thanks. – julz Sep 24 '08 at 4:47
vote up 0 vote down

Replace will do that

link|flag
vote up 1 vote down

UPDATE table_name SET field = replace(field,'[string-to-find]','[string-that-will-replace-it]');

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.