第二步:修改以下代码中的表名和自增量字段名后,运行
select * into #tmp from 表名
truncate table 表名
alter table 表名 drop 自增量字段名
alter table 表名 add 自增量字段名 int identity(1,1)
SET IDENTITY_INSERT 表名 ON
INSERT INTO 表名(自增量字段名,其他字段名1,其他字段名2……)
select 自增量字段名,其他字段名1,其他字段名2…… from #tmp
set identity_insert 表名 OFF
drop table #tmp
运行完成后,主键和自增量字段就搞定了。
资料来源网络,由asp编程网整理,经测试成功。
【1】 2