What is the best way to replace a string with another string on entire table?
问题 My question is similar to below but I want to replace it for any column: postgresql - replace all instances of a string within text field for instance - replace all instances of cat with dog in entire table(all rows) I am expecting something like below query to work for all columns(without specifying the column name in update query). UPDATE table_name SET information_schema.columns replace (information_schema.columns, 'old_value', 'new_value'); which actually doesn't seems to work. Any