How can I find all the db triggers in MySQL?

后端 未结 3 1203
逝去的感伤
逝去的感伤 2021-02-19 15:06

I created a trigger using SQL, how can I see the trigger using MySQL in phpMyadmin?

相关标签:
3条回答
  • 2021-02-19 15:11

    to see all your routines the code is...

    select * from information_schema.routines
    
    0 讨论(0)
  • 2021-02-19 15:16
    select * from information_schema.triggers where trigger_schema = 'your_db'
    
    0 讨论(0)
  • 2021-02-19 15:24

    Click on the 'SQL' tab and enter this query:

    SHOW TRIGGERS
    
    0 讨论(0)
提交回复
热议问题