Computer >> Computer tutorials >  >> Programming >> MySQL

How can we get the count of all MySQL event-related operations collectively?


With the help of SHOW STATUS statement, we can get the count of MySQL event-related operations. It can be used as follows −

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)