Reputation: 87
I have a DB table that has a column called Pools
, the programmer made an error and has the data as so:
pool1,pool2;pool3;pool4
I need to update every row in the table, and just replace the same data back in except replace(column, ',', ';')
. Replace the commas in a given column in a row with semi-colons.
Any thoughts?
Upvotes: 0
Views: 2291