Database trigger details bitsCN. com1 introduction
Like the stored procedure, Mysql triggers are embedded into a mysql program. The trigger is a new function of mysql5. Currently, the online Fengchao system, Beidou system, and Columbus system use
After MySQL exports one sql:
DELIMITER $$
DROP TRIGGER IF EXISTS ' Updateegopriceondelete ' $$
CREATE
TRIGGER ' Updateegopriceondelete ' after the DELETE on ' CustomerInfo '
For each ROW BEGIN
DELETE from Egoprice WHERE
After MYSQL exports an SQL statement:
DELIMITER $
Drop trigger if exists 'updateegopriceondelete' $
CREATE
TRIGGER 'updateegopriceondelete' after delete on 'mermerinfo'
FOR EACH ROW BEGIN
Delete from egoprice WHERE customerId = OLD. customerId;
END $
Why use a trigger? Advantages of triggers 1. Trigger's "automatic"For programmers, the trigger is invisible, but he does. If no trigger is needed, when you update the name field of the user table, you need to write code to update redundant fields in
MySQL trigger and mysql trigger
MySQL from 5.0.2 version to support the function of the trigger, this blog to introduce the trigger, mysql version: mysql-5.7.19.
What is a trigger?
A trigger is a database object related to tables. It is triggered
ConventionsandStyles convention and programming style every time I want to demonstrate the actual code, I will adjust the code displayed on the screen of the mysql client and change the font to Courier, make them look different from common text (let
MySQL seems to be starting from 5.0.2 version to support the function of the trigger, this blog to introduce the trigger, first of all, or talk about the concept of something:What is a triggerA trigger is a database object that is related to a table,
Q: What is a trigger?A:A trigger is a database object that is related to a table, fires when a condition is met, and executes a collection of statements defined in the trigger.650) this.width=650; "Src=" http://images2015.cnblogs.com/blog/1113510/201
MySQL seems to be starting from 5.0.2 version to support the function of the trigger, this blog to introduce the trigger, first of all, or talk about the concept of something:What is a triggerA trigger is a database object that is related to a table,
Take a closer look at the role of delimiter in MySql. what is the role of delimiter in MySql? Many may have such doubts. The following describes the role of delimiter in MySql for your reference.
After MYSQL exports an SQL statement:
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.