show_status.md 555 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4
# SHOW STATUS

Goods 数据库近期在每日高峰时段很慢,Joe 想初步的查看一下数据库的工作状态,他应该执行:

M
Mars Liu 已提交
5 6
<hr/>

M
Mars Liu 已提交
7
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)
M
Mars Liu 已提交
8 9
* `show databases` 列出所有数据库
* `show tables` 列出所有表
M
Mars Liu 已提交
10

M
Mars Liu 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
## 答案

```mysql
show global status; 
```

## 选项

### A

```mysql
show status; 
```


### B

```mysql
show session status; 
```

### C

```mysql
show local status; 
```