我们怎样才能得到所有MySQL事件相关操作的总数呢?

WBOY
WBOY 转载
2023-08-27 08:05:21 561浏览

我们怎样才能得到所有MySQL事件相关操作的总数呢?

mysql> SHOW STATUS LIKE '%event%'; +--------------------------+-------+ | Variable_name | Value | +--------------------------+-------+ | Com_alter_event | 16 | | Com_create_event | 6 | | Com_drop_event | 4 | | Com_show_binlog_events | 0 | | Com_show_create_event | 0 | | Com_show_events | 4 | | Com_show_relaylog_events | 0 | +--------------------------+-------+ 7 rows in set (0.17 sec)

以上就是我们怎样才能得到所有MySQL事件相关操作的总数呢?的详细内容,更多请关注php中文网其它相关文章!

声明:本文转载于:tutorialspoint,如有侵犯,请联系admin@php.cn删除