show_status.md 317 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
# SHOW STATUS

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

## 答案

```mysql
show global status; 
```

## 选项

### A

```mysql
show status; 
```


### B

```mysql
show session status; 
```

### C

```mysql
show local status; 
```