Estimated reading time: 0 minutes, 15 seconds
What MySQL query will do a text search and replace in one particular field in a table?
Solution Query:
UPDATE [table_name] SET [field_name] = REPLACE([field_name], "foo", "bar");
(ie. search for 'foo' and replace with 'bar' so a record with the value : 'hello foo' becomes: 'hello bar')