1UPDATE
2 table_name
3SET
4 column_name = REPLACE(column_name, 'text to find', 'text to replace with')
5WHERE
6 column_name LIKE '%text to find%';
1UPDATE products SET
2productDescription = REPLACE(productDescription,'abuot','about');
1#Search, Update & Replace Query
2
3UPDATE `tblname` SET `description`= REPLACE(`description`, 'old name', 'New Name') WHERE `description` LIKE '%old name%';
1#REPLACE(string, from_string, new_string)
2SELECT REPLACE(myText, "a", "b") as myText FROM tableText;