码迷,mamicode.com
首页 > 数据库 > 详细

ORACLE_TRIGGER

时间:2017-11-03 00:21:14      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:logs   tag   date   creat   name   response   log   span   orm   

PL/SQL TRIGGER Statement

PL/SQL TRIGGER  Statement

The trigger statemet is a especially stored procedure.It define some event about database(such as,INSERT,UPDATE,CREATE and so on).When the special database event occur and execute the corresponse FUNCTION BLOCK. 

TRIGGER Syntax:

create or replace trigger tri_name

[befor|after|instead of] tri_event

on table_naem|view_name|db_name

[for each row] [when tri_condition]

begin

  plsql_sentences;

end tri_name;

 Demo Database:

Step one:Create a table to record information for TRIGGER operator.

Create TABLE dept_log(
        operate_tag VARCHAR2(10),
        operate_time DATE
        
);

 

Step two:Create a trigger on table dept.

CREATE OR REPLACE TRIGGER tri_dept
       BEFORE INSERT
       ON dept
DECLARE 
       var_tag VARCHAR2(10);
BEGIN
       IF inserting THEN 
         var_tag:=i;
       ELSIF updating THEN
         var_tag:=u;
       ELSIF deleting THEN
         var_tag:=d;
       END IF;
       INSERT INTO dept_log 
       VALUES(var_tag,SYSDATE);
END tri_dept;

 

Step three:Launch a table operator in the trigger set.

INSERT INTO dept VALUES(9,a,a);

 

Step four:select dept_log table information

select * from dept_log;

 

ORACLE_TRIGGER

标签:logs   tag   date   creat   name   response   log   span   orm   

原文地址:http://www.cnblogs.com/yjhlsbnf/p/7775107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!