To add one to every value in the table…
UPDATE myTable
SET ID = ID + 1
To create a new value, one more then the previous highest (usually), use a column with IDENTITY
To add one to every value in the table…
UPDATE myTable
SET ID = ID + 1
To create a new value, one more then the previous highest (usually), use a column with IDENTITY