MySQL AFTER INSERT Trigger

After Insert Trigger in MySQL is invoked automatically whenever an insert event occurs on the table. In this article, we are going to learn how to create an after insert trigger with its syntax and example.

Syntax

The following is the syntax to create an AFTER INSERT trigger in MySQL:

The AFTER INSERT trigger syntax parameter can be explained as below:

  • First, we will specify the name of the trigger that we want to create. It should be unique within the schema.
  • Second, we will specify the trigger action time, which should be AFTER INSERT clause to invoke the trigger.
  • Third, we will specify the name of a 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.
  • Finally, we will specify the trigger body that contains one or more statements 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 SQL queries to define the logic for the trigger. See the below syntax:

Restrictions

  • We can access the NEW values but cannot change them in an AFTER INSERT trigger.
  • We cannot access the OLD If we try to access the OLD values, we will get an error because there is no OLD on the INSERT trigger.
  • We cannot create the AFTER INSERT trigger on a VIEW.

AFTER INSERT Trigger Example

Let us understand how to create an AFTER INSERT trigger using the CREATE TRIGGER statement in MySQL with an example.

Suppose we have created a table named "student_info" as follows:

Next, we will insert some records into this table and then execute the SELECT statement to see the table data as follows:

MySQL AFTER INSERT Trigger

Again, we will create a new table named "student_detail" as follows:

Next, we will use a CREATE TRIGGER statement to create an after_insert_details trigger on the student_info table. This trigger will be fired after an insert operation is performed on the table.

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

MySQL AFTER INSERT Trigger

How to call the AFTER INSERT trigger?

We can use the following statements to invoke the above-created trigger:

The table that has been modified after the update query executes is student_detail. We can verify it by using the SELECT statement as follows:


MySQL AFTER INSERT Trigger

In this output, we can see that on inserting values into the student_info table, the student_detail table will automatically fill the records by invoking a trigger.

How to create AFTER INSERT Trigger in MySQL workbench?

To create an after insert trigger using this tool, we first need to launch the MySQL Workbench and log in using the username and password that we have created earlier. We will get the screen as follows:

MySQL AFTER INSERT Trigger

Now do the following steps for creating an AFTER INSERT trigger:

1. Go to the Navigation tab and click on the Schema menu that contains all the databases available in the MySQL server.

2. Select the database (for example, mystudentdb), double click on it that shows the sub-menu containing Tables, Views, Functions, and Stored Procedures. See the below screen.

MySQL AFTER INSERT Trigger

3. Expand the Tables sub-menu and select the table on which you want to create a trigger. After selecting a table, right-click on the selected table (for example, mystudentdb), and then click on the Alter Table option. See the below image:

MySQL AFTER INSERT Trigger

4. Clicking on the Alter Table option gives the screen as below:

MySQL AFTER INSERT Trigger

5. Now, click on the Trigger tab shown in the red rectangular box of the previous section, then select the Timing/Event AFTER INSERT. We will notice that there is a (+) icon button to add a trigger. Clicking on that button, we will get a default code on the trigger based on choosing Timing/Event:

MySQL AFTER INSERT Trigger

6. Now, complete the trigger code, review them once again, and if no error is found, click on the Apply button.

MySQL AFTER INSERT Trigger

7. After clicking on the Apply button, click on the Finish button for completion.

MySQL AFTER INSERT Trigger

8. If we look at the schema menu, we can see AFTER_INSERT_detail trigger under the student_info table as follows:

MySQL AFTER INSERT Trigger




Contact US

Email:[email protected]

After Insert Trigger
10/30