explain SQL语句:查询消耗的时间
select version():查看mysql版本
show profiles:分析sql性能
set profiling=1:打开profiles功能,默认是关闭的
show profile for query x(x为query_id):根据query_id 查看某个查询的详细时间耗费
select version():查看mysql版本
show profiles:分析sql性能
set profiling=1:打开profiles功能,默认是关闭的
show profile for query x(x为query_id):根据query_id 查看某个查询的详细时间耗费
show profile block io,cpu,memory,swaps,source,context switches for query x(x为query_id):查看占用cpu、 io等信息
1.清除缓存
reset query cache ;
flush tables;
2.查看表的索引:
show index from 表名;
本文介绍了如何使用MySQL自带的工具进行SQL性能分析,包括查询消耗时间、查看版本、开启性能分析等功能。此外还提供了清除缓存及查看表索引的方法。

被折叠的 条评论
为什么被折叠?



