kymbrik
8/9/2017 - 8:57 AM

Find and Replace text in the entire table using a MySQL query

Find and Replace text in the entire table using a MySQL query

 UPDATE `table_name`
 SET `field_name` = replace(same_field_name, 'unwanted_text', 'wanted_text')