MYSQL Triggers
MYSQL Triggers
3.Displaying Triggers
If you want to retrieve all triggers in a database, just executing the following SQL statement
SELECT * FROM Information_Schema.Triggers
WHERE Trigger_schema = classicmodels;
4.Dropping Triggers
You can not only to view the trigger but also remove an existing one
DROP TRIGGER employees_audit. before_employee_update