oracle 触发器的执行
createorreplacetriggertri_borrowafterinsertonborrowforeachrowbeginif((selectcount(*)f...
create or replace trigger tri_borrow
after insert
on borrow
for each row
begin
if( (select count(*) from borrow,books where
borrow.bno= books.bno and books.bname='数据库')>0 )
then
insert into borrow_save values(:new.cno,:new.bno,:new.rdate);
end if;
end;
上面是我写的在borrow表上的一个触发器,当borrow表上有‘数据库’的借阅信息时,就会将信息存放在borrow_save表中。
帮忙看看程序对不?如何测试验证这个触发器呢?
初学oracle,最好能给个例子,谢谢!!
我自己测试时,想往borrow表中插入‘数据库’的借阅信息时,提示错误:如图 展开
after insert
on borrow
for each row
begin
if( (select count(*) from borrow,books where
borrow.bno= books.bno and books.bname='数据库')>0 )
then
insert into borrow_save values(:new.cno,:new.bno,:new.rdate);
end if;
end;
上面是我写的在borrow表上的一个触发器,当borrow表上有‘数据库’的借阅信息时,就会将信息存放在borrow_save表中。
帮忙看看程序对不?如何测试验证这个触发器呢?
初学oracle,最好能给个例子,谢谢!!
我自己测试时,想往borrow表中插入‘数据库’的借阅信息时,提示错误:如图 展开
1个回答
展开全部
修改后如下:
create or replace trigger tri_borrow
after insert on borrow
for each row
declare
vn_count int;
begin
select count(1) into vn_count from books
where :new.bno = books.bno and books.bname = 'database';
if vn_count>0 then
insert into borrow_save(cno,bno,rdate) values (:new.cno,:new.bno,:new.rdate);
end if;
end;
原因一:不能直接写select from 要定义变量 通过select into 变量 from
原因二:在加了触发器的表在触发过程中不能对该表进行操作包括查询。所以需要将两表关联中的borrow去掉,改为用:new.bno来做约束条件。
create or replace trigger tri_borrow
after insert on borrow
for each row
declare
vn_count int;
begin
select count(1) into vn_count from books
where :new.bno = books.bno and books.bname = 'database';
if vn_count>0 then
insert into borrow_save(cno,bno,rdate) values (:new.cno,:new.bno,:new.rdate);
end if;
end;
原因一:不能直接写select from 要定义变量 通过select into 变量 from
原因二:在加了触发器的表在触发过程中不能对该表进行操作包括查询。所以需要将两表关联中的borrow去掉,改为用:new.bno来做约束条件。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询