If you want to have an unique number for each row automatically generated, this is IDENTITY as per Neil's answer.
If each time you update the table you want to increase the values (ie they are not keys):
Update MyTable
Set IDColumn = IDColumn + 1
Where