Using ‘replace’ you can find and replace text of a column in a table.
Example of Replace text:
UPDATE `tbl` SET `field_name` = replace(field_name, 'old_text', 'new_text');
Using ‘replace’ you can find and replace text of a column in a table.
UPDATE `tbl` SET `field_name` = replace(field_name, 'old_text', 'new_text');