1.当表中已有数据结构和数据时,先删除主键列,运行语句:
alter table [journal].[dbo].[t_account_copy1] add id BIGINT identity(1,1) not null;
2.再把ID设为主键
3.为自增列插入指定数据
set identity_insert 表名 ON --允许对自增列Id插入指定数据
insert into table_name(Id,Name) values(1,'test')
set identity_insert 表名 OFF --关闭对自增列Id插入指定数据
网友评论