mysql 查询优化
假设数据库建立了三个索引字段,如下图
1. 数据库栏位
2. 索引栏位
最左侧索引为“主键索引”,其他两栏为“普通索引”
3. 以下是where不同索引字段组合的查询情况
where最左侧索引字段
select * from wx_new.wxtl_log where company_id = 1
where最左侧和中间索引字段
select * from wx_new.wxtl_log where company_id = 1 and msg_type = 1
where三个索引字段
select * from wx_new.wxtl_log where company_id = 1 and msg_type = 1 and reply_type = 1
where中间索引字段
select * from wx_new.wxtl_log where msg_type = 1
where最右侧索引字段
select * from wx_new.wxtl_log where reply_type = 1
where后两个索引字段
select * from wx_new.wxtl_log where msg_type = 1 and reply_type = 1
更多优化请参考
数据库SQL优化大总结之 百万级数据库优化方案
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。