当前位置导航:炫浪网>>网络学院>>编程开发>>Oracle教程

Oracle 触发器语法及实例(二)

   2、触发器的类型有:

  触发器类型:           

  1、 语句触发器

  2、 行触发器

  3、INSTEAD OF触发

  4、 系统条件触发器

  5、 用户事件触发器

  2.1、语句级触发器.(语句级触发器对每个DML语句执行一次)

  是在表上或者某些情况下的视图上执行的特定语句或者语句组上的触发器。能够与INSERT、UPDATE、DELETE或者组合上进行关联。但是无论使用什么样的组合,各个语句触发器都只会针对指定语句激活一次。比如,无论update多少行,也只会调用一次update语句触发器。

  实例:  

      create or replace trigger tri_test
  after insert or update or delete on test
  begin
  if updating then
  dbms_output.put_line('修改');
  elsif deleting then
  dbms_output.put_line('删除');
  elsif inserting then
  dbms_output.put_line('插入');
  end if;
  end;

  2.2、行级触发器.(行级触发器对DML语句影响的每个行执行一次)

  实例一:

  •   触发器  
  •       行级触发器

      create table test(sid number,sname varchar2(20));--创建一个表
  create sequence seq_test;--创建序列
  create or replace trigger tri_test--创建触发器
  before insert or update of sid on test
  for each row--触发每一行
  begin
  if inserting then
  select seq_test.nextval into:new.sid from dual;
  else
  raise_application_error(-20020,'不允许更新ID值!');--中断程序
  end if;
  end;

 

共3页 首页 上一页 1 2 3 下一页 尾页 跳转到
相关内容
赞助商链接