在SQL Server中,
Create Table aa
(IdentityID int Identity(1,1),
 OtherCol VarChar(20),
 PRIMARY KEY(Identity)
)
Identity自动增长,Step为1.