在有外键的表中添加测试数据

前言:在测试功能的时候需要做些测试数据。遇到有外键的表insert失败,在这里记录一下。

问题:sql插入数据报错:

当 IDENTITY_INSERT 设置为 OFF 时,不能为表 'T_ZY_Line' 中的标识列插入显式值。

bug:表设置了外键,不能直接插入。

解决:

--允许将显示值插入到表的标识列中
set identity_insert T_ZY_Line ON
--屏蔽外键作用
alter table T_ZY_Line nocheck constraint FK_T_ZY_Line_T_ZY_Resource
--插入数据
insert into T_ZY_Line(ID) values(587)
--还原更改的设置
set identity_insert T_ZY_Line OFF; 
alter table T_ZY_Line nocheck constraint FK_T_ZY_Line_T_ZY_Resource





你可能感兴趣的:(sql)