mysql官网
http://dev.mysql.com/doc/refman/
1、是否支持,看看当前的mysql版本是否支持
show variables like 'profiling';
2、开启功能,默认是关闭,使用前需要开启
set profiling=on;
3、运行sql
4、查看结果,show profiles;
5、诊断sql, show profile cpu,block io for query 上一步前面的问题sql数字号码
6、日常开发需要注意的问题
converting HEAP to MyISAM 查询结果太大,内存都不够用了往磁盘上搬
creating tmp table 创建临时表,拷贝数据到临时表,用完再删除
copying to tmp table on disk 把内存中临时表复制到磁盘
locked