show_profile.md 757 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4 5 6 7 8 9
# SHOW PROFILE

数据分析组的几个分析查询很慢,希望 Joe 提供帮助,他准备查看一下这几条查询的 Profile 信息,应该:

1. 执行`SET SESSION profiling = 1;`打开 profile
2. 执行查询后,根据 `show profiles`找到要剖分的查询id
3. 执行 `SHOW PROFILE FOR QUERY xxx;` 查看剖分信息
4. 执行`SET SESSION profiling = 0;`关闭 profile 

M
Mars Liu 已提交
10 11
<hr/>

F
feilong 已提交
12
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill){target="_blank"}。
F
feilong 已提交
13

F
feilong 已提交
14 15
* `show databases;` 列出所有数据库
* `show tables;` 列出所有表
M
Mars Liu 已提交
16

M
Mars Liu 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
## 答案

```
1, 2, 3, 4
```

## 选项

### A

```
2, 3
```

### B

```
1, 2, 3
```

### C

```
2, 3, 4
```