码迷,mamicode.com
首页 > 数据库 > 详细

mysql 组合索引中对范围的查询

时间:2018-07-01 21:58:27      阅读:593      评论:0      收藏:0      [点我收藏+]

标签:big   between   SQ   mysql   技术   9.png   for   解决   nic   

 

  

建立表:

技术分享图片

CREATE TABLE `ygzt_test` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`a` int(11) NOT NULL,
`b` int(11) NOT NULL,
`c` int(11) NOT NULL,
`d` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `a` (`a`,`b`,`c`,`d`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT=‘测试‘;

 

一、实验一,无order by

 

首先加联合索引a,b,c,d

explain select * from ygzt_test where a=1 and b=2 and c=3 and d=4

技术分享图片

修改sql:

explain select * from ygzt_test where a>1 and b=2 and c=3 and d=4

技术分享图片

type已经由ref降为index

 

修改索引b,c,d,a

explain select * from ygzt_test where a>1 and b=2 and c=3 and d=4

技术分享图片

done

 

二、实验二,order by

 

建立索引a,b

explain select * from ygzt_test where a>0 order by b

技术分享图片

可以看到,a>0使用了索引,order by b 未使用

 

修改索引为b,a

explain select * from ygzt_test where a>0   order by b

技术分享图片

 技术分享图片

where 与 order by 都无索引

想起此前order by+select *的问题

这个问题单独拿出来实践下:

修改索引为a

explain select * from ygzt_test order by a

技术分享图片

 

explain select * from ygzt_test FORCE INDEX (a)  order by a

技术分享图片

 

 

 

结论:

1.单列索引中——<,<=,=,>,>=,between,like(右边模糊)适用索引

2.索引中有范围的,有序性失效,解决方案以实际为准

 

mysql 组合索引中对范围的查询

标签:big   between   SQ   mysql   技术   9.png   for   解决   nic   

原文地址:https://www.cnblogs.com/silyvin/p/9251297.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!