mysql 分析3使用分析sql 性能 show profiles ;
Posted 考虑突破
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 分析3使用分析sql 性能 show profiles ;相关的知识,希望对你有一定的参考价值。
show variables like \'%profiling%\'; 查看状态 查看时间去哪了```
set profiling=1;// 打开
show profiles; 查看执行过的sql 语句
show profile for query 2; 找到第二条为id为2的sql生成查询计划 分析查询状态 分析sql依据 时间花费在那些地方了
时间浪费在了数据传输。
通过 show profile for query 2;找到问题所在。
以上是关于mysql 分析3使用分析sql 性能 show profiles ;的主要内容,如果未能解决你的问题,请参考以下文章