I have a table called training. It has a column named locations. There are 6 different possible varchar combinations in the row ie. location 1, location 2 etc.
I want to run a query that detects all instances of location 1 and changes it to 1.
How do I do that?
Per Sergios reply below, I’ve tried:
UPDATE training SET locations=1
Obviously this will change everything
1 Answer