mysql query search and replace string code example
Example 1: mysql find and replace
UPDATE `table` SET `column` = replace(`column`, 'find text', 'replace text')
Example 2: search for replace in mysql
UPDATE products SET
productDescription = REPLACE(productDescription,'abuot','about');