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
For further actions, you may consider blocking this person and/or reporting abuse
Jackson S -
Chandra priyan -
Динь Чыонг Лам -
Thomas Johnson -
Top comments (0)