Mysql-Trigger Trigger

Source: Internet
Author: User

Trigger (Trigger): A special thing,

Monitor a certain thing operation (Insert/update/delete),

and trigger related actions (Insert/update/delete).

A trigger (trigger) creates 4 features: A watch location (table), a monitoring event (Insert/update/delete), a trigger time (After/before), a trigger event (Insert/update/delete).

Trigger Syntax:

CREATE trigger Add_user_log (trigger name) before (trigger eventafter/before) Update (monitor event) on User_info (monitor table name) for each Rowbegin
#命名变量
Set @user = 0; INSERT INTO user_login_log (phone_number,user) VALUES (' 183014138XX ', @user);
#if: else if:
If @user is null then
#触发事件
else if Then
#触发事件

Mysql-Trigger Trigger

Related Article

Contact Us

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.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.