[MySQL] explain中的using where和using index
程序员文章站
2022-06-10 17:16:52
1. 查看表中的所有索引 show index from modify_passwd_log; 有两个 一个是id的主键索引 , 一个是email_id的普通索引 2. using index表示 使用到了索引 , 并且所取的数据完全在索引中就能拿到 explain select email_id ......
1. 查看表中的所有索引 show index from modify_passwd_log; 有两个 一个是id的主键索引 , 一个是email_id的普通索引
2. using index表示 使用到了索引 , 并且所取的数据完全在索引中就能拿到
explain select email_id from modify_passwd_log where email_id=670602;
3. type是ref,where是空白:使用到了索引,但是查询的数据有没在索引中的,回表去拿数据了
explain select * from modify_passwd_log where email_id=670602;
4. type是ref , where是 using where ,表示使用到了索引 , 但是也进行了where过滤
上一篇: [Linux] awk基础编程
下一篇: quartz定时任务cron表达式
推荐阅读
-
不能忽略c#中的using和as操作符的用处
-
[MySQL] explain中的using where和using index
-
不能忽略c#中的using和as操作符的用处
-
Mysql中key和index的区别点整理
-
mysql中USING的用法
-
MySQL left join操作中on和where放置条件的区别介绍
-
MySQL中USING 和 HAVING 用法实例简析
-
MySQL索引的Index method中btree和hash的区别_MySQL
-
执行计划中Using filesort,Using temporary相关语句的优化解决_MySQL
-
MySQL索引的Index method中btree和hash的区别_MySQL