sql server怎么设置自增加id?设计表的时候,等同于MySQL的auto_increment属性设置[解决办法]create table tb1 ( A int identity(1,1) primary key )