sqlserver如果建表的时候不设自增,之后是没法直接修改的,需要先删再重设:
alter table 表名 drop column IDalter table 表名 add ID int identity(1,1)