1. 程式人生 > >mysql 組合索引中對範圍的查詢

mysql 組合索引中對範圍的查詢

gin image 單列 分享圖片 alt auto big cnblogs charset

建立表:

技術分享圖片

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 組合索引中對範圍的查詢