i would like to do a find and replace inside an entire database not just a table.
How can i alter the script below to work?
update [table_name] set
Simple Soltion
UPDATE `table_name` SET `field_name` = replace(same_field_name, 'unwanted_text', 'wanted_text')