How can I find all the db triggers in MySQL?
select * from information_schema.triggers where trigger_schema = 'your_db'
Click on the 'SQL' tab and enter this query:
SHOW TRIGGERS
select * from information_schema.triggers where trigger_schema = 'your_db'
Click on the 'SQL' tab and enter this query:
SHOW TRIGGERS