你如何列出 MySQL 数据库中的所有触发器?

2022-01-01 00:00:00 mysql triggers

列出 MySQL 数据库中所有触发器的命令是什么?

What is the command to list all triggers in a MySQL database?

推荐答案

列出所有触发器的命令是:

The command for listing all triggers is:

show triggers;

或者您可以通过以下方式直接访问 INFORMATION_SCHEMA 表:

or you can access the INFORMATION_SCHEMA table directly by:

select trigger_schema, trigger_name, action_statement
from information_schema.triggers

  • 您可以从 5.0.10 版本开始执行此操作.
  • 关于TRIGGERS的更多信息桌子在这里.

相关文章