首页 > 代码库 > mysql 查询优化
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优化大总结之 百万级数据库优化方案
mysql 查询优化
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。