显示 MySQL 数据库中的所有触发器
列出 MySQL 数据库中所有触发器的命令是什么?
What is the command to list all triggers in a MySQL database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
列出 MySQL 数据库中所有触发器的命令是什么?
What is the command to list all triggers in a MySQL database?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(8)
这句话可能有助于解决问题:
This sentence could contribute to solving the problem:
要在特定模式中显示特定触发器,您可以尝试以下操作:
For showing a particular trigger in a particular schema you can try the following:
您可以使用 MySQL 工作台:
连接到 MySQL 服务器
在表名称行上选择数据库
You can use MySQL Workbench:
Connect to the MySQL Server
Select DB
或者
OR
您可以使用下面的内容来查找特定的触发器定义。
或下面显示数据库中的所有触发器。 它适用于 MySQL 5.0 及以上版本。
You can use below to find a particular trigger definition.
or the below to show all the triggers in the database. It will work for MySQL 5.0 and above.
我希望下面的代码能为您提供更多信息。
这将为您提供 MySQL 版本:5.5.27 及以上版本中总共 22 列
I hope following code will give you more information.
This will give you total 22 Columns in MySQL version: 5.5.27 and Above
列出所有触发器的命令是:
或者您可以通过以下方式直接访问
INFORMATION_SCHEMA
表:TRIGGERS
表的更多信息位于此处。The command for listing all triggers is:
or you can access the
INFORMATION_SCHEMA
table directly by:TRIGGERS
table is here.您可以使用下面的 SQL 显示所有触发器。 *文档解释
INFORMATION_SCHEMA.TRIGGERS
表,我建议使用 \G 可以更清楚地显示它们,下面的 SQL 可以比 SHOW TRIGGERS 这是我最后解释的:或者:
并且,您可以使用下面的 SQL 显示
apple
数据库的触发器:并且,您可以显示
apple
数据库选择apple
数据库,其中 使用。 *文档解释了SHOW TRIGGERS< /code> ,我建议使用
\G
可以更清楚地显示它们:Or:
Or:
Or:
并且,即使选择,您也可以显示
orange
数据库的触发器apple
数据库与USE
:并且,您可以显示
apple
数据库的触发器,而不选择任何一个具有USE
的数据库>:小心,如果你运行下面的SQL时没有用
USE
选择任何一个数据库:那么,就会出现下面的错误:
You can show all triggers with the SQL below. *The doc explains
INFORMATION_SCHEMA.TRIGGERS
table and I recommend to use \G which can show them more clearly and the SQL below can show more details than SHOW TRIGGERS which I explain last:Or:
And, you can show the triggers of
apple
database with the SQL below:And, you can show the triggers of
apple
database selectingapple
database with USE. *The doc explainsSHOW TRIGGERS
and I recommend to use\G
which can show them more clearly:Or:
Or:
Or:
And, you can show the triggers of
orange
database even if selectingapple
database withUSE
:And, you can show the triggers of
apple
database not selecting any one of databases withUSE
:Be careful, if you run the SQL below not selecting any one of databases with
USE
:Then, there is the error below: