Documentation Home
MySQL 8.4 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 39.8Mb
PDF (A4) - 39.9Mb
Man Pages (TGZ) - 257.9Kb
Man Pages (Zip) - 364.9Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 8.4 Reference Manual  /  ...  /  Server Status Variables

7.1.10 服务器状态变量

MySQL 服务器维护了许多状态变量,提供了关于其操作的信息。您可以使用 SHOW [GLOBAL | SESSION] STATUS 语句(见第15.7.7.36节,“SHOW STATUS 语句”) 查看这些变量和它们的值。可选的 GLOBAL 关键字将聚合所有连接的值,而 SESSION 显示当前连接的值。

mysql> SHOW GLOBAL STATUS;
+-----------------------------------+------------+
| Variable_name                     | Value      |
+-----------------------------------+------------+
| Aborted_clients                   | 0          |
| Aborted_connects                  | 0          |
| Bytes_received                    | 155372598  |
| Bytes_sent                        | 1176560426 |
...
| Connections                       | 30023      |
| Created_tmp_disk_tables           | 0          |
| Created_tmp_files                 | 3          |
| Created_tmp_tables                | 2          |
...
| Threads_created                   | 217        |
| Threads_running                   | 88         |
| Uptime                            | 1389872    |
+-----------------------------------+------------+

许多状态变量将在 FLUSH STATUS 语句中重置为 0。

本节提供了每个状态变量的描述。关于状态变量的总结,请见第7.1.6节,“服务器状态变量参考”。关于 NDB 集群特定的状态变量,请见第25.4.3.9.3节,“NDB 集群状态变量”

状态变量具有以下含义。