I have a column containing list of streets. I need to replace \'street\' with \'St\'. The replacement can be made in the current column or in a new column with the address in th
Run a query like this to update in the same column:
UPDATE table SET column = REPLACE(column, 'Street', 'St');