选定列,修改列属性标识规范中(是标识)为是,标识增量为1,标识种子为1
SQL语句:alter table 表名 add 列名 int IDENTITY(1,1) NOT NULL
alter
table
表名
add
列名
int
IDENTITY(1,1)
NOT
NULL