【数据库】触发器 两张表同步更新,带有外键约束的id
正常情况下的设置了外键约束的时不允许别修改其他值的,主键想更新成其他值也不允许所以思路就是先暂时关闭外键,然后先进行修改,再重新开启外键约束启动禁用外键的代码:--启用/禁用指定表所有外键约束altertabletablenameNOCHECKconstraintallaltertabletablenameCHECKconstraintall实例:--5、创建一个部门的触发器,当部门id更新时,薪
·
正常情况下的设置了外键约束的时不允许修改成其他值的,
主键想更新成其他值也不允许
所以思路就是先暂时关闭外键,然后先进行修改,再重新开启外键约束
启动禁用外键的代码:
--启用/禁用指定表所有外键约束
alter table tablename NOCHECK constraint all
alter table tablename CHECK constraint all
实例:
--5、 创建一个部门的触发器,当部门id更新时,薪水表中对应的部门id全部更新
drop trigger tri_Bm_update
go
create trigger tri_Bm_update
on Bm
instead of update
as
if UPDATE(id)
begin
alter table xs NOCHECK constraint all
update Bm set bm.id=(select id from inserted) where Bm.id=(select id from deleted)
update Xs set xs.id=(select id from inserted) where xs.id=(select id from deleted)
alter table xs CHECK constraint all
end
go
但是有个弊端,如果你 update id的同时也更新了其他的数据,其他部分不会生效
所以我在update里加上了也同时更新其他的列,这样就没问题了
create trigger tri_Bm_update
on Bm
instead of update
as
if UPDATE(id)
begin
alter table xs NOCHECK constraint all
update Bm
set bm.id=(select id from inserted),
bm.name=(select name from inserted), /*在这里*/
bm.tel=(select tel from inserted) /*在这里*/
where Bm.id=(select id from deleted)
update Xs set xs.id=(select id from inserted) where xs.id=(select id from deleted)
alter table xs CHECK constraint all
end
go
更多推荐
所有评论(0)