Skip to content

Instantly share code, notes, and snippets.

@marifrahman
Created June 4, 2013 00:53
Show Gist options
  • Save marifrahman/5702787 to your computer and use it in GitHub Desktop.
Save marifrahman/5702787 to your computer and use it in GitHub Desktop.
SQL Query for MS SQL Server to sequentially update a column
DECLARE @myVar numeric
SET @myVar = 10
UPDATE
tblMyTable
SET
@myvar = myId = @myVar + 1
Where condition = 'Something' And isDeleted = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment