oracle触发器 比较两个表A,B中的a字段,如果一样,就不触发
oracle触发器比较两个表A,B中的a字段,如果一样,就不触发,如果不一样,就把B表中的所有字段值触发进第三个表C,怎么写那?...
oracle触发器 比较两个表A,B中的a字段,如果一样,就不触发,如果不一样,就把B表中的所有字段值触发进第三个表C,怎么写那?
展开
1个回答
展开全部
暂把这个触发器叫做test_compare
create or replace trigger test_compare on after insert or update of a on B
FOR EACH ROW
begin
insert into C
select * from B where not exists (select a from A where A.a=B.a)
end
/
create or replace trigger test_compare on after insert or update of a on B
FOR EACH ROW
begin
insert into C
select * from B where not exists (select a from A where A.a=B.a)
end
/
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询