How identity constraint works?
Could any one suggest me how can i make 10 as increment in the below statement.
create table Student1(SID int primary key identity(0,10),SName varchar(开发者_Python百科10))
the syntax is IDENTITY [ (seed , increment ) ]
. You need to specify both or none. The default is (1, 1)
精彩评论