MySql 的SQL执行计划查看,判断是否走索引

时间:2023-12-13 22:14:20

在select窗口中,执行以下语句:

set profiling =1; -- 打开profile分析工具
show variables like '%profil%'; -- 查看是否生效
show processlist; -- 查看进程
use cmc; -- 选择数据库
show PROFILE all; -- 全部分析的类型
show index from t_log_account; ##查看某个表的索引
show index from t_car_copy; ##查看某个表的索引
-- 使用explain命令查看query语句的性能:
EXPLAIN select * from t_car_copy ; ##查看执行计划中的sql性能
EXPLAIN select * from t_car_copy where org_id = '3';
EXPLAIN select * from t_car_copy where 1=1 and org_id = '3';

其余参考以下文章:

https://www.cnblogs.com/xu-xiang/p/5833349.html   (查看Mysql执行计划)

http://www.cnitblog.com/aliyiyi08/archive/2008/09/09/48878.html(Mysql Explain 详解[强烈推荐]  索引类别等)