Take a look at the following code example. The part that you are interested is the update statement. Try this out on your machine as is to see the before image of the table and the after image.DECLARE @i intSET @i = 0CREATE TABLE Table1(Column1 char(1), Column2 int)INSERT INTO Table1 (Column1) VALUES('A')INSERT INTO Table1 (Column1) VALUES('B')INSERT INTO Table1 (Column1) VALUES('C')INSERT INTO Table1 (Column1) VALUES('D')INSERT INTO Table1 (Column1) VALUES('E')SELECT *FROM Table1UPDATE Table1 SET Column2 = @i, @i = @i + 1SELECT *FROM Table1DROP TABLE Table1Tara