How can I find all the db triggers in MySQL?

后端 未结 3 1262
逝去的感伤
逝去的感伤 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
    

提交回复
热议问题