I am trying to replace all instances of an IP (stored as a string) in a database with a different IP.
to do this for a known table and column I would run
UPDATE tableName
SET columnName = REPLACE(columnName, ‘IP1/', 'IP2/');
But i need to do this for all columns in all tables, is there an easy way to apply this command to all columns in the DB.
Thanks