建立update触发器
答案:2 悬赏:20 手机版
解决时间 2021-04-29 13:53
- 提问者网友:记得曾经
- 2021-04-29 04:07
建立修改触发器,当修改读者的借卡号时,同时修改借阅表的对应借卡号
最佳答案
- 五星知识达人网友:愁杀梦里人
- 2021-04-29 05:18
上面说的是ORACLE,再给你一个SQL SERVER版的
Create Trigger TigReader on 读者表 for update
as
if update (读者的借卡号列)
begin
update 借阅表
set 借卡号列=c.借卡号 from 借阅表 a,deleted b,inserted c
where a.借卡号列=b.借卡号列
end
表名和列号自己去改吧。
全部回答
- 1楼网友:笑迎怀羞
- 2021-04-29 05:42
create or replace trigger 借书表
before update on scott.student for each row
begin
update 借阅表 set 借阅表的借阅卡ID='' where 借书表id=?
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯