Reputation: 15778
I created a trigger using SQL, how can I see the trigger using MySQL in phpMyadmin?
Upvotes: 14
Views: 28347
Reputation: 1459
to see all your routines the code is...
select * from information_schema.routines
Upvotes: 1
Reputation: 56397
select * from information_schema.triggers where trigger_schema = 'your_db'
Upvotes: 5
Reputation: 149971
Click on the 'SQL' tab and enter this query:
SHOW TRIGGERS
Upvotes: 29