My questions is
how to increment a column\'s value by 1.
For example, suppose a column ID has values 1,2,3,4, ..
ID
Try this:
Update Emp set testCount = ISNULL(testCount, 0) + 1 where testId=1