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

mysql中能够使用索引的典型场景

时间:2017-06-28 13:08:25      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:nload   联合   from   and   匹配   explain   http   sql   span   

mysql 演示数据库:http://downloads.mysql.com/docs/sakila-db.zip

匹配全值


 

explain select * from rental where rental_date=‘2005-05-25 17:22:10‘ and inventory_id=373 and customer_id=343

 

技术分享

 

匹配值的范围查询


 

 

explain select * from rental where customer_id >= 373 and customer_id<400

 

技术分享

 

匹配最左前缀


 

仅仅使用索引中的最左列进行查询,比如:在col1+col2+col3字段上的联合索引中,能够使用的索引情况可以有:col1 (col2+col3) ,col1+col2+col3。不能被使用的索引:col2 (col2+col3) 等情况。以payment表为例

 

alter table payment add index idx_payment_date (payment_date,amount,last_update);

 

 

技术分享

 

explain select * from payment where payment_date=‘2006-02-14 15:16:03‘ and last_update=‘2006-02-15 22:12:32‘\G;

 

技术分享

 

 explain select * from payment where amount=3.98 and last_update=‘2006-02-15 22:12:32‘\G;

 

技术分享

 

 仅仅对索引进行查询


 

mysql中能够使用索引的典型场景

标签:nload   联合   from   and   匹配   explain   http   sql   span   

原文地址:http://www.cnblogs.com/dsitn/p/7088921.html

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