MySQL Create Trigger

In this article, we are going to learn how to create the first trigger in MySQL. We can create a new trigger in MySQL by using the CREATE TRIGGER statement. It is to ensure that we have trigger privileges while using the CREATE TRIGGER command. The following is the basic syntax to create a trigger:

Parameter Explanation

The create trigger syntax contains the following parameters:

trigger_name: It is the name of the trigger that we want to create. It must be written after the CREATE TRIGGER statement. It is to make sure that the trigger name should be unique within the schema.

trigger_time: It is the trigger action time, which should be either BEFORE or AFTER. It is the required parameter while defining a trigger. It indicates that the trigger will be invoked before or after each row modification occurs on the table.

trigger_event: It is the type of operation name that activates the trigger. It can be either INSERT, UPDATE, or DELETE operation. The trigger can invoke only one event at one time. If we want to define a trigger which is invoked by multiple events, it is required to define multiple triggers, and one for each event.

table_name: It is the name of the table to which the trigger is associated. It must be written after the ON keyword. If we did not specify the table name, a trigger would not exist.

BEGIN END Block: Finally, we will specify the statement for execution when the trigger is activated. If we want to execute multiple statements, we will use the BEGIN END block that contains a set of queries to define the logic for the trigger.

The trigger body can access the column's values, which are affected by the DML statement. The NEW and OLD modifiers are used to distinguish the column values BEFORE and AFTER the execution of the DML statement. We can use the column name with NEW and OLD modifiers as OLD.col_name and NEW.col_name. The OLD.column_name indicates the column of an existing row before the updation or deletion occurs. NEW.col_name indicates the column of a new row that will be inserted or an existing row after it is updated.

For example, suppose we want to update the column name message_info using the trigger. In the trigger body, we can access the column value before the update as OLD.message_info and the new value NEW.message_info.

We can understand the availability of OLD and NEW modifiers with the below table:

Trigger Event OLD NEW
INSERT No Yes
UPDATE Yes Yes
ELETE Yes No

MySQL Trigger Example

Let us start creating a trigger in MySQL that makes modifications in the employee table. First, we will create a new table named employee by executing the below statement:

Next, execute the below statement to fill the records into the employee table:

Next, execute the SELECT statement to verify the inserted record:

MySQL Create Trigger

Next, we will create a BEFORE INSERT trigger. This trigger is invoked automatically insert the working_hours = 0 if someone tries to insert working_hours < 0.

If the trigger is created successfully, we will get the output as follows:

MySQL Create Trigger

Now, we can use the following statements to invoke this trigger:

After execution of the above statement, we will get the output as follows:

MySQL Create Trigger

In this output, we can see that on inserting the negative values into the working_hours column of the table will automatically fill the zero value by a trigger.






Contact US

Email:[email protected]

MySQL Create Trigger
10/30