Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Pls Help- what is wrong with my code?
Hello:
I want to make a very easy trigger like this.
ztable with c1, c2 two columns
After delete a record from ztable, check to see if there is still
records in ztable where c2=5, then my code is as followed:
create or replace trigger aaa
After Delete on ztable
for each row
DECLARE
i integer;
BEGIN
select count(*) into i from ztable where c2=5; if i=0 then
-- do something
end if;
Thanks
--
Johnson Chao
ctc Japan
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
Received on Thu Aug 05 1999 - 04:08:37 CDT
![]() |
![]() |