ORACLE_TRIGGER

Posted yjhsbn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ORACLE_TRIGGER相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段6——CSS选择器

VSCode自定义代码片段——声明函数