mysql trigger creation and usage examples

mysql trigger creation and usage examples

This article describes how to create and use MySQL triggers. Share with you for your reference, the details are as follows:

What is a trigger

  • Triggers are used to "automatically" perform some actions after/before certain actions. (For example, if new student information is inserted, the number of students should be modified in the class table).
  • After the insert delete update trigger is set, executing the insert delete update operation will automatically trigger the set content.
  • A table can have a maximum of 6 triggers (3*2, three operations*two times (before|after)).

Create a trigger

grammar:

create trigger trigger name before|after event on table name for each row trigger statement;

  • The recommended trigger name is trigger_xxx, which is easy to distinguish. Trigger names cannot be repeated .
  • before|after represents the execution time of the trigger statement. If it is before, the trigger statement is executed before the insert, delete, or update operation; after means after.
  • An event is one of the insert, delete, and update operations.
  • for each row is a trigger that will execute the corresponding operation on any record.
  • A trigger statement is a statement that is executed when a trigger is fired.

Explanation of keywords in MySQL creation syntax:

Fields meaning Possible values
DEFINER= Optional parameter, specifies the creator, the default is the currently logged in user (CURRENT_USER);
The trigger will be executed by the user specified by this parameter, so permissions need to be considered;
DEFINER='root@%'
DEFINER=CURRENT_USER
trigger_name The trigger name should preferably consist of the table name + trigger event keyword + trigger time keyword;
trigger_time The trigger time, before or after a certain event; BEFORE、AFTER
trigger_event Trigger events, such as triggering when inserting or deleting;
INSERT : Insert operation trigger, triggered when INSERT, LOAD DATA, REPLACE;
UPDATE : Update operation trigger, triggered when an UPDATE operation occurs;
DELETE : Delete operation trigger, triggered by DELETE and REPLACE operations;
INSERT, UPDATE, DELETE
table_name The table name of the trigger operation time;
trigger_order Optional parameter, if multiple triggers with the same trigger event and trigger time are defined (
For example: BEFORE UPDATE), the default triggering order is consistent with the order in which the triggers are created. You can use this parameter to change their triggering order. This parameter is supported since MySQL 5.7.2.
FOLLOWS : The currently created trigger is activated after the existing triggers;
PRECEDES : The currently created trigger is activated before the existing triggers;
FOLLOWS、PRECEDES
trigger_body The content of the SQL statement that triggers execution, usually starts with begin and ends with end begin .. end

Mysql trigger usage example:

1. MySQL trigger Insert triggers update of the same table:

Below we have a table " tmp1 ", tmp1 table has two integer fields: n1, n2. We need to use triggers to automatically set the value of the n2 field to 5 times the value of the n1 field when inserting records into tmp.
Create a test table and trigger:

-- Create a test table drop table if exists tmp1;
 
create table tmp1 (n1 int, n2 int);
 
-- Create trigger DELIMITER $
 
drop trigger if exists tmp1_insert$
 
create trigger tmp1_insert
 
before insert on tmp1
 
for each row
 
begin
 
  set new.n2 = new.n1*5;
 
end$
 
DELIMITER ;

Test trigger update effect:

mysql> insert tmp1(n1) values(18);
 
Query OK, 1 row affected (0.01 sec)
 
mysql> insert tmp1(n1) values(99);
 
Query OK, 1 row affected (0.00 sec)
 
mysql> select * from tmp1;
 
+------+------+
 
| n1 | n2 |
 
+------+------+
 
| 18 | 90 |
 
| 99 | 495 |
 
+------+------+
 
2 rows in set (0.00 sec)

2. MySQL trigger Update triggers to update another table:

Below are two tables tmp1 and tmp2, both of which have the same field name . When a trigger is used to update the name of a table, the name of another table will also be updated.
Create a test table and trigger:

-- Create a test table and insert test data drop table if exists tmp1;
 
drop table if exists tmp2;
 
create table tmp1 (id int, name varchar(128)) default charset='utf8';
 
create table tmp2 (fid int, name varchar(128)) default charset='utf8';
 
insert into tmp1 values(1, '爱E族');
 
insert into tmp2 values(1, '爱E族');
 
-- Create trigger DELIMITER $
 
drop trigger if exists tmp1_update$
 
create trigger tmp1_update
 
after update on tmp1
 
for each row
 
begin
 
  update tmp2 set name=new.name where fid=new.id;
 
end$
 
DELIMITER ;

Test trigger update effect:

mysql> select * from tmp1;
 
+------+---------+
 
| id | name |
 
+------+---------+
 
| 1 | Love E tribe |
 
+------+---------+
 
1 row in set (0.00 sec)
 
mysql> select * from tmp2;
 
+------+---------+
 
| fid | name |
 
+------+---------+
 
| 1 | Love E tribe |
 
+------+---------+
 
1 row in set (0.00 sec)
 
mysql> update tmp1 set name='aiezu.com' where id=1;
 
Query OK, 1 row affected (0.00 sec)
 
Rows matched: 1 Changed: 1 Warnings: 0
 
mysql> select * from tmp1;
 
+------+-----------+
 
| id | name |
 
+------+-----------+
 
| 1 | aiezu.com |
 
+------+-----------+
 
1 row in set (0.00 sec)
 
mysql> select * from tmp2;
 
+------+-----------+
 
| fid | name |
 
+------+-----------+
 
| 1 | aiezu.com |
 
+------+-----------+
 
1 row in set (0.00 sec)

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 example
  • Introduction and use of triggers and cursors in MySQL
  • Use and understanding of MySQL triggers
  • How to use cursor triggers in MySQL
  • The use of MySQL triggers and what to pay attention to
  • MySQL trigger usage scenarios and method examples
  • Detailed explanation of MySQL database triggers
  • A brief discussion on MySql views, triggers and stored procedures
  • Detailed explanation of the basic usage of MySQL triggers [create, view, delete, etc.]
  • Use of MySQL triggers

<<:  Detailed graphic tutorial on how to enable remote secure access with Docker

>>:  Vue method to verify whether the username is available

Recommend

docker logs - view the implementation of docker container logs

You can view the container logs through the docke...

Briefly describe the difference between Redis and MySQL

We know that MySQL is a persistent storage, store...

Solve the problem of the container showing Exited (0) after docker run

I made a Dockerfile for openresty on centos7 and ...

JavaScript implementation of a simple addition calculator

This article example shares the specific code of ...

Shell script settings to prevent brute force ssh

The shell script sets access control, and the IP ...

How to use Xtrabackup to back up and restore MySQL

Table of contents 1. Backup 1.1 Fully prepared 1....

Basic knowledge: What does http mean before a website address?

What is HTTP? When we want to browse a website, w...

Share JS four fun hacker background effect codes

Table of contents Example 1 Example 2 Example 3 E...

Mac node deletion and reinstallation case study

Mac node delete and reinstall delete node -v sudo...

Vue uses openlayers to load Tiandi Map and Amap

Table of contents 1. World Map 1. Install openlay...

What is the length of a function in js?

Table of contents Preface Why How much is it? Num...

Solution to Navicat Premier remote connection to MySQL error 10038

Remote connection to MySQL fails, there may be th...

Detailed explanation of Linux lsof command usage

lsof (list open files) is a tool to view files op...