What is a mysql trigger
Requires MySQL 5 Support for triggers was added in MySQL 5. Therefore, the content in this chapter applies to MySQL 5 or later versions.
MySQL statements are executed when needed, as are stored procedures. But what if you want a certain statement (or some statements) to execute automatically when an event occurs? For example:
1. Whenever a customer is added to a database table, check whether the phone number format is correct and whether the state abbreviation is capitalized;
2. Whenever an order is placed When a product is deleted, the ordered quantity is subtracted from the inventory quantity;
3. Whenever a row is deleted, a copy is retained in an archive table.
What all these examples have in common is that they all need to automatically handle when a certain table changes. This is literally the trigger. A trigger is a MySQL statement (or a group of statements between the BEGIN and END statements) that MySQL automatically executes in response to any of the following statements:
1.DELETE;
2.INSERT;
3.UPDATE.
Other MySQL statements do not support triggers.
Create mysql trigger
When creating a trigger, 4 pieces of information need to be given:
1. The unique trigger name;
2. The table associated with the trigger;
3. The activity the trigger should respond to (DELETE, INSERT or UPDATE);
4. When does the trigger execute (before or after processing).
Keep trigger names unique per database In MySQL 5, trigger names must be unique in each table, but not in each database. This means that two tables in the same database can have triggers with the same name. This is not allowed in other DBMSs where each database trigger name must be unique, and future versions of MySQL are likely to make the naming rules more strict. Therefore, it is now best to use unique trigger names within the database scope.
Triggers are created with the CREATE TRIGGER statement. The following is a simple example:
Input:
create trigger newproduct after insert on proucts for each row select 'product added';
Analysis: CREATE TRIGGER is used to create a new trigger named newproduct. Triggers can be executed before or after an operation occurs, here AFTER INSERT is given, so this trigger will execute after the INSERT statement executes successfully. This trigger also specifies FOR EACH ROW, so the code executes for each inserted row. In this example, the text Product added will appear once for each inserted row. To test this trigger, use an INSERT statement to add one or more rows to products
. You will see a Product added message displayed for each successful insert.
Only supports tables. Only tables support triggers, views do not support them (temporary tables do not support them either).
Triggers are defined for each event of each table. Only one trigger is allowed for each event of each table. Therefore, each table supports up to 6 triggers (before and after each INSERT , UPDATE and DELETE ). A single trigger cannot be associated with multiple events or multiple tables, so if you need a trigger that executes on INSERT and UPDATE operations, you should define
two triggers.
Trigger Failure If the BEFORE trigger fails, MySQL will not perform the requested operation. Additionally, if the BEFORE trigger or the statement itself fails, MySQL will not execute the AFTER trigger (if any).
Delete mysql trigger
Now, the syntax for deleting a trigger should be obvious. To delete a trigger, use the DROP TRIGGER statement as follows:
Input:
drop trigger newproduct ;
Analysis: Triggers cannot be updated or overwritten. In order to modify a trigger, it must be deleted and then re-created.
【Related recommendations】
2. MySQL character set and proofreading order usage tutorial
3. Introduction to MySQL character set and collation order
5. MySQL transaction-ROLLBACK, detailed explanation of COMMIT usage
The above is the detailed content of Introduction to mysql triggers and how to create and delete triggers. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
