MySQL AFTER INSERT TriggerAfter 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. SyntaxThe following is the syntax to create an AFTER INSERT trigger in MySQL: The AFTER INSERT trigger syntax parameter can be explained as below:
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
AFTER INSERT Trigger ExampleLet 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: 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: 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: 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: 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. 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: 4. Clicking on the Alter Table option gives the screen as below: 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: 6. Now, complete the trigger code, review them once again, and if no error is found, click on the Apply button. 7. After clicking on the Apply button, click on the Finish button for completion. 8. If we look at the schema menu, we can see AFTER_INSERT_detail trigger under the student_info table as follows: Next TopicMySQL BEFORE UPDATE Trigger |