把这个字段添加auto_increment属性
alter table.....
alter table tbl_name change old_col_name new_col_name data_type not null auto_increment primary key
如果你是脚本建表的话就
create table ab
(
id int primary key identity(1,1) not null//ID为主键且自动增长
)
如果你是自己在设计里加的话就选中你要设置成自动递增的列,下面会有一个列属性,找到标识规范,把它的值设置成“是”即可