This example shows an identity that begins at 1 and monotonically increases by 1 at a time. This is for the job_id column of the jobs table:
IDENTITY(1,1)
An IDENTITY column can also be used to increase a number by any number from a different starting point. This example shows an IDENTITY column that begins at 144 and monotonically increases by 12 at a time: