日期:2014-05-18 浏览次数:20740 次
alter table 表名 drop column 字段名 alter table 表名 add 字段名 int identity(1,1) ------解决方案-------------------- alter table tbname add id int identity(1,1)