博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle触发器例子
阅读量:6499 次
发布时间:2019-06-24

本文共 1368 字,大约阅读时间需要 4 分钟。

1 --建表: 2 create table zhidao_20131014_tab2_1 3 ( 4        HEAD_ID  varchar2(10), 5        LINE_ID  varchar2(10), 6        QTY  number 7 ); 8 create table zhidao_20131014_tab2_2 9 (10        HEAD_ID  varchar2(10),11        SUMQTY  number12 );13 --造数:14 insert into zhidao_20131014_tab2_115 select 'H1','1',100 from dual16 union all17 select 'H1','2',200 from dual18 union all19 select 'H1','2',300 from dual20 union all21 select 'H1','2',100 from dual;22  23 insert into zhidao_20131014_tab2_224 select 'H1',700 from dual;25 commit;26 --触发器:27 create or replace trigger tr_zhidao28 after insert or update or delete29 on zhidao_20131014_tab2_130 for each row31 begin32   case33     when updating then34       update zhidao_20131014_tab2_2 t set SUMQTY=SUMQTY - :o1ld.QTY + :new.QTY where t.head_id=:new.head_id;35     when inserting then36       update zhidao_20131014_tab2_2 t set SUMQTY=SUMQTY + :new.QTY where t.head_id=:new.head_id;37     when deleting then38       update zhidao_20131014_tab2_2 t set SUMQTY=SUMQTY - :old.QTY where t.head_id=:old.head_id;39   end case;40 end;41 --测试:42 --insert43 insert into zhidao_20131014_tab2_1 44 select 'H1','3',300 from dual;45 --delete46 delete zhidao_20131014_tab2_1 where HEAD_ID='H1' and LINE_ID='3';47 --update48 update zhidao_20131014_tab2_1 set QTY=1000 where QTY=300;

 

转载于:https://www.cnblogs.com/zyx-/p/8043179.html

你可能感兴趣的文章
Eclipse下C/C++开发环境搭建
查看>>
Eclipse中设置在创建新类时自动生成注释
查看>>
我的友情链接
查看>>
CoreOS 手动更新
查看>>
golang 分页
查看>>
再论机械式针对接口编程
查看>>
25 个 Linux 性能监控工具
查看>>
C#程序员整理的Unity 3D笔记(十三):Unity 3D基于组件的思想
查看>>
Tengine-2.1.1 ngx_http_concat_module 400问题
查看>>
Windows中挂载安装ISO文件
查看>>
Wayland 1.0发布
查看>>
golang的goroutine是如何实现的?
查看>>
乐视云基于Kubernetes的PaaS平台建设
查看>>
R 学习笔记《十》 R语言初学者指南--图形工具
查看>>
PHP通过读取DOM抓取信息
查看>>
DICOM医学图像处理:DICOM网络传输
查看>>
nio和传统Io的区别
查看>>
移动端网页布局中需要注意事项以及解决方法总结
查看>>
(原创)Linux下查看系统版本号信息的方法
查看>>
oracle
查看>>