mysql 单列索引与联合索引的使用

一、单列索引

col1,col2,col3 分别加索引i1,i2,i3

select * from t where col1 = 'v'  用了索引 i1

select * from t where col1 = 'v' and col2 = 'v' and col3 = 'v' 还是只用了索引 i1

select * from t where col2 = 'v' and col1 = 'v' and col3 = 'v' 还是只用了索引 i1

select * from t where col2 = 'v' and col3 = 'v' 用了i2

用or的时候

select * from t where col1 = 'v' or col2 = 'v'  未用任何索引

其他特殊情况

select * from student where  1=1 and sname = '小明2'  会使用索引

select * from student where  sname = ' '     会使用索引

select * from student where  sname = null  不会用索引  (所以避免给字段设置null)

 

二、联合索引

col1,col2,col3 创建联合索引 i123

均使用了索引i123 :

    where col1

    where col1 and col2

    where col1 and col2 and col3

    where col1 and col3

未能使用索引:

    where col2

    where col2 and col3

三、单列索引和联合索引作用在一个列中

与上述规则一致。

当两个索引都可以用到时,数据库引擎自动优化,自动选择最快的那个索引。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值