Categories: MySQL

Create Trigger in MySQL

Share

Using CREATE TRIGGER statement you can create a trigger. You have to put the trigger name after the trigger statement.

Let’s see an example of Create Trigger:

For example we have two tables i.e. users and userhistory.

users:
userID
firstName
lastName

userhistory:
userID
last_update

Read Also: INSERT … ON DUPLICATE KEY UPDATE

Now we will create a trigger before update users table:

DELIMITER $$
CREATE TRIGGER before_user_update
BEFORE UPDATE ON users
FOR EACH ROW BEGIN

INSERT INTO userhistory
SET last_update = NOW(),
userID = OLD.userID;

END$$
DELIMITER ;

Whenever user update their information userhistory table also get updated automatically.

Triggers could be defined on the table, schema, view or database with which the event is associated.

Triggers can be written for the following purposes:

  • To prevent invalid transactions
  • Security authorizations impose
  • Like auditing
  • Referential integrity enforce
  • Event logging
  • Information store on table access
  • Synchronous replication of tables
  • Generate derived column values automatically

Recent Posts

The Sharp-Looking Guy: 5 Essential Tips for Men to Become Sharp

We've gotten so used to seeing men streetwear joggers, ripped jeans, and sleeveless shirts. Hair…

1 day ago

How to Use Your Wedding Jewellery In Unique Ways At Festivals

When it comes to festivals, the options for wedding jewellery are endless. You can go…

1 day ago

5 Tips On Window Cleaning

Whether it concerns your home or an office building, the state of a property’s windows…

1 day ago

Sustainable Business Practices: A Win-Win Strategy

You know that running an environmentally sustainable business is the right thing to do. But…

1 day ago

Unlock Growth – Guide to Online Financing and Business Loans for Entrepreneurs

If you are in a financial crisis , or need to start a new business…

1 day ago

7 Key Factors That Help In Selecting the Best Fleet Management Software

To realize the strategic advantage from the fleet management system (FMS) and differentiate the business…

1 day ago