MySQL trigger simple usage example

MySQL trigger simple usage example

This article uses examples to illustrate the simple usage of MySQL triggers. Share with you for your reference, the details are as follows:

MySQL triggers, like stored procedures, are programs embedded in MySQL. Triggers are triggered by events, including INSERT, UPDATE, and DELETE, but not SELECT.

Create a trigger

CREATE TRIGGER name,time,event ON table_name FOR EACH ROW trigger_stmt

For example

Copy the code as follows:
CREATE TRIGGER ins_sum BEFORE INSERT ON account FOR EACH ROW SET @sum = @sum + NEW.amount

Triggers with multiple execution statements

CREATE TABLE test1(a1 INT);
CREATE TABLE test2(a2 INT);
CREATE TABLE test3(a3 INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
CREATE TABLE test4(
  a4 INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
  b4 INT DEFAULT 0
);
DELIMITER //
CREATE TRIGGER testref BEFORE INSERT ON test1
  FOR EACH ROW BEGIN
    INSERT INTO test2 SET a2 = NEW.a1;
  DELETE FROM test3 where a3 = NEW.a1;
    UPDATE test4 SET b4 = b4 + 1 WHERE a4 = NEW.a1;
  END
  //
DELIMITER ;
INSERT INTO test3(a3) VALUES (NULL), (NULL), (NULL), (NULL), (NULL), (NULL), (NULL), (NULL), (NULL), (NULL), (NULL), (NULL);
INSERT INTO test4(a4) VALUES (0), (0), (0), (0), (0), (0), (0), (0), (0), (0), (0);
//Start testing INSERT INTO test1 VALUES (1), (3), (1), (7), (1), (8), (4), (4);

View Triggers

SHOW TRIGGERS \G; //View all SELECT * FROM information_schema.TRIGGERS where TRIGGER_NAME = 'testref';

Deleting a trigger

DROP TRIGGER testref;

Comprehensive Case

Step 1: Create the persons table

CREATE TABLE persons (name VARCHAR(40), num int);

Step 2: Create a sales table

CREATE TABLE sales (name VARCHAR(40), sum int);

Step 3: Create a trigger

CREATE TRIGGER num_sum AFTER INSERT ON persons
FOR EACH ROW INSERT INTO sales VALUES (NEW.name,7*NEW.num);

Step 4: Insert records into the persons table

INSERT INTO persons VALUES ('xiaoxiao',20),('xiaohua',69);
SELECT * FROM persons;
SELECT *FROM sales;

Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL query skills", "MySQL transaction operation skills", "MySQL stored procedure skills", "MySQL database lock related skills summary" and "MySQL common function summary"

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • Detailed explanation of MySQL trigger usage
  • Detailed explanation of the concept, principle and usage of MySQL triggers
  • Brief introduction and use cases of triggers in MySQL
  • How to test mysql triggers and stored procedures
  • How to create a trigger in MySQL
  • MySQL 5.0 Trigger Reference Tutorial
  • Different ways to write triggers in MySQL and SQL
  • Basic Learning Tutorial on Triggers in MySQL
  • A simple example and introduction to MySQL triggers
  • Detailed example of mysql trigger usage
  • MySQL trigger syntax and application examples

<<:  How to install pip package in Linux

>>:  Zabbix uses PSK shared key to encrypt communication between Server and Agent

Recommend

Summary of Docker configuration container location and tips

Tips for using Docker 1. Clean up all stopped doc...

A brief discussion on the issue of element dragging and sorting in table

Recently, when using element table, I often encou...

Detailed discussion of MySQL stored procedures and stored functions

1 Stored Procedure 1.1 What is a stored procedure...

Vue implements the right slide-out layer animation

This article example shares the specific code of ...

Do you know all 24 methods of JavaScript loop traversal?

Table of contents Preface 1. Array traversal meth...

Summary of basic knowledge and operations of MySQL database

This article uses examples to explain the basic k...

How to implement responsive layout in vue-cli

When we are doing front-end development, we will ...

Summary of Linux commands commonly used in work

Use more open source tools such as docker and kub...

js code to realize multi-person chat room

This article example shares the specific code of ...

JavaScript to implement checkbox selection or cancellation

This article shares the specific code of JavaScri...

WeChat applet implements SMS login in action

Table of contents 1. Interface effect preview 2.u...

Nginx uses ctx to realize data sharing and context modification functions

Environment: init_worker_by_lua, set_by_lua, rewr...