Incremental create trigger addition, deletion, and modification

Source: Internet
Author: User

Demo

Add
Drop trigger if exists t_tab;
Create trigger t_tab
After insert on friend
For each row
Begin
Insert into friend_1 (ID, mqq, fqq, update1) values (New. ID, new. mqq, new. fqq, "add ");
End;

Insert into friend (mqq, fqq) values (1, 2 );

Modify
Drop trigger if exists t_tab_update;
Create trigger t_tab_update
After update on friend
For each row
Begin
Update friend_1 set mqq = new. mqq, fqq = new. fqq, update1 = "up" where id = new. ID;
End;

Update friend set mqq = 4 where id = 79;

Delete
Drop trigger if exists t_tab_delete;
Create trigger t_tab_delete
Before delete on friend
For each row
Begin
Update friend_1 set update1 = "delete" where id = old. ID;
End;

Delete from friend where id = 79;

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.