以前遇到过,你把标识符的设置修改一下就可以进行插入数据了!
原理是激活 identity_insert 属性
方法如下:
set
identity_insert 表名 on
/*(打开插入属性)*/
insert into 表名(ID的名称,···········) values(·······)
set identity_insert 表名 off /*关闭插入属性,以免数据混乱*/
建议最好是清楚你需要插入数据的行,否则插入相同的数字时会报错
给个例子给你:
use shop
GO
set identity_insert goods_type on
insert
into goods_type(type_id,type_name)
values(2,'生活用品') /*需要插入的是第二行*/
set
identity_insert goods_type off
GO