码迷,mamicode.com
首页 > 其他好文 > 详细

优化 or 语句

时间:2017-06-29 10:07:59      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:tor   _id   技术   .com   ges   alt   from   font   blog   

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

 

对于 or  语句,如果要利用索引,则 or 之间的每个条件都必须有索引

 

rental 表索引情况

技术分享

 

 or查询的前后都有索引列---(使用到了索引)

explain select * from rental where staff_id=‘‘ or inventory_id=‘‘\G;

 

技术分享

 

 

复合索引的列  ---(没有使用索引)

 explain select * from rental where rental_date=‘‘ or inventory_id=‘‘\G;

技术分享

 

优化 or 语句

标签:tor   _id   技术   .com   ges   alt   from   font   blog   

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

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