Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement mysql Flip-flop

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces how to achieve the mysql trigger, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to understand it.

Simple example of MySQL trigger

1. Grammar:

CREATE TRIGGER-the trigger must have a name, up to 64 characters, and may be followed by a delimiter. It is basically similar to the naming of other objects in MySQL.

{BEFORE | AFTER}-the trigger has a time setting for execution: it can be set before or after the event.

{INSERT | UPDATE | DELETE}-you can also set triggered events: they can be triggered during the execution of insert, update, or delete.

ON-A trigger belongs to a table: when an insert, update, or delete operation is performed on this table, the trigger is activated. We cannot schedule two triggers for the same event in the same table.

FOR EACH ROW-the interval at which the trigger executes: the FOR EACH ROW clause tells the trigger to perform an action every other row, rather than on the entire table.

-- the trigger contains the SQL statement to be triggered: the statement here can be any legal statement, including the compound statement, but the statement here is subject to the same restrictions as the function.

You must have considerable permissions to create a CREATE TRIGGER, and if you are already a Root user, that's enough. This is different from the standard of SQL.

2 simple trigger column

(1) View trigger show triggers

(2) Delete trigger drop trigger t_afterinsert_on_tab1

(3) now the simulation is to insert data into table student and back up to student1 table at the same time.

Create the required table

CREATE TABLE student (

Id varchar (11)

);

CREATE TABLE student1 (

Id varchar (11)

);

Create a trigger:

CREATE TRIGGER t_afterinsert_on_tab1

AFTER INSERT ON Student

FOR EACH ROW

BEGIN

Insert into Student1 (studentid,studentname) values (new.StudentID,new.StudentName)

/ / Note that new is directly followed by the field name of the table.

END

Test:

Insert into student (id) values ("1")

Select * from student

Select * from student1

Data synchronization can be found

Thank you for reading this article carefully. I hope the article "how to achieve mysql trigger" shared by the editor will be helpful to everyone. At the same time, I also hope you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report