find and replace in mysql column code example
Example 1: mysql replace
REPLACE(str, find_string, replace_with)
Example 2: update and replace mysql
#Search, Update & Replace Query
UPDATE `tblname` SET `description`= REPLACE(`description`, 'old name', 'New Name') WHERE `description` LIKE '%old name%';
Example 3: search for replace in mysql
UPDATE products SET
productDescription = REPLACE(productDescription,'abuot','about');