search
HomeDatabaseOracleHow to write oracle trigger

In Oracle, a trigger will automatically execute a defined statement when the specified condition is met. The writing method is "create [or replace] tigger trigger name trigger time trigger event on table name [for each row] begin pl/sql statement end".

How to write oracle trigger

The operating environment of this tutorial: Windows 10 system, Oracle 11g version, Dell G3 computer.

How to write an oracle trigger

1. Introduction to triggers

The definition of a trigger means that when a certain condition is established, it triggers The statements defined in the container will be automatically executed.

Therefore, triggers do not need to be called manually and cannot be called.

Then, the triggering conditions of the trigger are actually set when you define it.

It needs to be explained here that triggers can be divided into statement-level triggers and row-level triggers.

For detailed introduction, please refer to the information on the Internet. Simply put, statement-level triggers can be triggered before or after the execution of certain statements. Row-level triggers are triggered once when the row data in the defined trigger table changes.

Specific examples:

1. A statement-level trigger defined in a table. When the table is deleted, the program will automatically execute the operation process defined in the trigger. This means that the operation of deleting the table is the condition for trigger execution.

2. If a row-level trigger is defined in a table, when a row of data in the table changes, such as deleting a row of records, the trigger will be automatically executed.

2. Trigger syntax

Trigger syntax:

create [or replace] tigger 触发器名 触发时间 触发事件
on 表名
[for each row]
begin
 pl/sql语句
end

Among them:

  • trigger Trigger name: The name of the trigger object. Since the trigger is automatically executed by the database, the name is just a name and has no real purpose.

  • Trigger time: Indicates when the trigger is executed. The value is optional:

  • before: Indicates that the trigger is executed before the database action;

  • after: Indicates that the trigger is executed after the database action.

  • Trigger event: Indicate which database actions will trigger this trigger:

  • insert: Database insertion will trigger this trigger;

  • update: Database modification will trigger this trigger;

  • delete: Database deletion will trigger this trigger.

  • Table name: The table where the database trigger is located.

  • for each row: The trigger is executed once for each row of the table. Without this option, it is executed only once for the entire table.

Triggers can achieve the following functions:

Function:

1. Allow/restrict modifications to the table

2. Automatically generate derived columns, such as auto-increment fields

3. Enforce data consistency

4. Provide auditing and logging

5. Prevent invalid transaction processing

6. Enable complex business logic

Example

1) The following trigger is triggered before updating the table tb_emp, in order to not allow the table to be modified on weekends:

create or replace trigger auth_secure before insert or update or DELETE
on tb_emp
begin
  IF(to_char(sysdate,'DY')='星期日') THEN
    RAISE_APPLICATION_ERROR(-20600,'不能在周末修改表tb_emp');
  END IF;
END;
/

2), use triggers to realize the serial number auto-increment

Create a test table:

create table tab_user(
  id number(11) primary key,
  username varchar(50),
  password varchar(50)
);

Create a sequence:

Copy the code The code is as follows:

create sequence my_seq increment by 1 start with 1 nomaxvalue nocycle cache 20;

Create a trigger:

CREATE OR REPLACE TRIGGER MY_TGR
 BEFORE INSERT ON TAB_USER
 FOR EACH ROW--对表的每一行触发器执行一次
DECLARE
 NEXT_ID NUMBER;
BEGIN
 SELECT MY_SEQ.NEXTVAL INTO NEXT_ID FROM DUAL;
 :NEW.ID := NEXT_ID; --:NEW表示新插入的那条记录
END;

Insert data into the table:

insert into tab_user(username,password) values('admin','admin');
insert into tab_user(username,password) values('fgz','fgz');
insert into tab_user(username,password) values('test','test');
COMMIT;

Query table results: SELECT * FROM TAB_USER;

Recommended tutorial: "Oracle Video tutorial

The above is the detailed content of How to write oracle trigger. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Oracle's Role in the Business WorldOracle's Role in the Business WorldApr 23, 2025 am 12:01 AM

Oracle is not only a database company, but also a leader in cloud computing and ERP systems. 1. Oracle provides comprehensive solutions from database to cloud services and ERP systems. 2. OracleCloud challenges AWS and Azure, providing IaaS, PaaS and SaaS services. 3. Oracle's ERP systems such as E-BusinessSuite and FusionApplications help enterprises optimize operations.

Oracle Software in Action: Real-World ExamplesOracle Software in Action: Real-World ExamplesApr 22, 2025 am 12:12 AM

Oracle software applications in the real world include e-commerce platforms and manufacturing. 1) On e-commerce platforms, OracleDatabase is used to store and query user information. 2) In manufacturing, OracleE-BusinessSuite is used to optimize inventory and production planning.

Oracle Software: Applications and IndustriesOracle Software: Applications and IndustriesApr 21, 2025 am 12:01 AM

The reason why Oracle software shines in multiple fields is its powerful application and customized solutions. 1) Oracle provides comprehensive solutions from database management to ERP, CRM, SCM, 2) its solutions can be customized according to industry characteristics such as finance, medical care, manufacturing, etc. 3) Successful cases include Citibank, Mayo Clinic and Toyota, 4) The advantages lie in comprehensiveness, customization and scalability, but challenges include complexity, cost and integration issues.

Choosing Between MySQL and Oracle: A Decision GuideChoosing Between MySQL and Oracle: A Decision GuideApr 20, 2025 am 12:02 AM

Choosing MySQL or Oracle depends on project requirements: 1. MySQL is suitable for small and medium-sized applications and Internet projects because of its open source, free and ease of use; 2. Oracle is suitable for core business systems of large enterprises because of its powerful, stable and advanced functions, but at a high cost.

Oracle's Products: A Deep DiveOracle's Products: A Deep DiveApr 19, 2025 am 12:14 AM

Oracle's product ecosystem includes databases, middleware and cloud services. 1. OracleDatabase is its core product, supporting efficient data storage and management. 2. Middleware such as OracleWebLogicServer connects to different systems. 3. OracleCloud provides a complete set of cloud computing solutions.

MySQL and Oracle: Key Differences in Features and FunctionalityMySQL and Oracle: Key Differences in Features and FunctionalityApr 18, 2025 am 12:15 AM

MySQL and Oracle each have advantages in performance, scalability, and security. 1) Performance: MySQL is suitable for read operations and high concurrency, and Oracle is good at complex queries and big data processing. 2) Scalability: MySQL extends through master-slave replication and sharding, and Oracle uses RAC to provide high availability and load balancing. 3) Security: MySQL provides fine-grained permission control, while Oracle has more comprehensive security functions and automation tools.

Oracle: The Powerhouse of Database ManagementOracle: The Powerhouse of Database ManagementApr 17, 2025 am 12:14 AM

Oracle is called the "Powerhouse" of database management because of its high performance, reliability and security. 1. Oracle is a relational database management system that supports multiple operating systems. 2. It provides a powerful data management platform with scalability, security and high availability. 3. Oracle's working principles include data storage, query processing and transaction management, and supports performance optimization technologies such as indexing, partitioning and caching. 4. Examples of usage include creating tables, inserting data, and writing stored procedures. 5. Performance optimization strategies include index optimization, partition table, cache management and query optimization.

What Does Oracle Offer? Products and Services ExplainedWhat Does Oracle Offer? Products and Services ExplainedApr 16, 2025 am 12:03 AM

Oracleoffersacomprehensivesuiteofproductsandservicesincludingdatabasemanagement,cloudcomputing,enterprisesoftware,andhardwaresolutions.1)OracleDatabasesupportsvariousdatamodelswithefficientmanagementfeatures.2)OracleCloudInfrastructure(OCI)providesro

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function