show profiles:列表,显示最近发送到服务器上执行的语句的资源使用情况
show profile: 展示最近一条语句执行的详细资源占用信息,默认显示 Status和Duration两列.
1、查看是否打开了性能分析功能
select @@profiling;
2、打开 profiling 功能
set profiling=1;
3、执行你的sql语句
4、执行 show profiles 查看分析列表
5、查询第二条语句的执行情况
show profile for query 2;
6、可指定资源类型查询
show profile cpu,swaps for query 2;
网友评论