# 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
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)。
* `show databases` 列出所有数据库
* `show tables` 列出所有表
## 答案
```
1, 2, 3, 4
```
## 选项
### A
```
2, 3
```
### B
```
1, 2, 3
```
### C
```
2, 3, 4
```