查询所有的慢sql(未指定用户)
```
SELECT * FROM information_schema.processlist WHERE info IS NOT NULL;
```
查询指定用户的所有慢sql(command=query正在查询的,time是耗时(单位:s))
```
SELECT * FROM information_schema.processlist WHERE info IS NOT NULL and USER = "tomorrow";
```
