27,582
社区成员




set identity_insert [数据库名].dbo.[表名] on
insert into [数据库名].dbo.[表名]([字段列表])
select [字段列表] from [来源表表名]
set identity_insert [数据库名].dbo.[表名] off
set identity_insert [表名] on
insert into [表名]([字段列表])
select [字段列表] from [来源表表名]
set identity_insert [表名] off