重庆思庄Oracle、Redhat认证学习论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2855|回复: 0
打印 上一主题 下一主题

or each row触发器

[复制链接]
跳转到指定楼层
楼主
发表于 2014-3-26 14:23:01 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
create table test(id number);
create table audit_table(table_name varchar2(20),ins int,upd int,del int);

create or replace trigger test_tri
after insert or update or delete on test
declare
v_count int;
begin
      select count(*) into v_count from audit_table where table_name='TEST';
      if v_count=0 then
       insert into audit_table values( 'TEST',0,0,0);
      end if;
     case
             when insertin then
              update test set ins=ins+1 where table_name='TEST';
            when updating then
              udpate test set upd=upd+1 where table_name='TEST';
           when deleting then
               update test set del=del+1 where table_name='TEST';
        end case;
end;

begin
for i in 1..100 loop 
insert into test values(i);
end loop;
end;

select * from audit_table;
table_name        ins        upd        del
————————————————
TEST                   1             0           0


=====
alter trigger as:
=====
create or replace trigger test_tri
after insert or update or delete on test
for each row
declare
v_count int;
begin
      select count(*) into v_count from audit_table where table_name='TEST';
      if v_count=0 then
       insert into audit_table values( 'TEST',0,0,0);
      end if;
     case
             when insertin then
              update test set ins=ins+1 where table_name='TEST';
            when updating then
              udpate test set upd=upd+1 where table_name='TEST';
           when deleting then
               update test set del=del+1 where table_name='TEST';
        end case;
end;


truncate audit_table;
table has been truncated.
truncate test;
table has been truncated.

begin
for i in 1..100 loop 
insert into test values(i);
end loop;
end;


select * from audit_table;

table_name           ins        upd        del
————————————————
TEST                  100            0            0
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 支持支持 反对反对
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|手机版|小黑屋|重庆思庄Oracle、Redhat认证学习论坛 ( 渝ICP备12004239号-4 )

GMT+8, 2024-5-14 13:54 , Processed in 0.098124 second(s), 20 queries .

重庆思庄学习中心论坛-重庆思庄科技有限公司论坛

© 2001-2020

快速回复 返回顶部 返回列表