首页 / 数据库 / MySQL / MySQL优化之BTree索引使用规则
MySQL优化之BTree索引使用规则从一道题开始分析:假设某个表有一个联合索引(c1,c2,c3,c4)一下——只能使用该联合索引的c1,c2,c3部分
A where c1=x and c2=x and c4>x and c3=x
B where c1=x and c2=x and c4=x order by c3
C where c1=x and c4= x group by c3,c2
D where c1=? and c5=? order by c2,c3
E where c1=? and c2=? and c5=? order by c2,c3有谁知道下面A-E能否可以使用索引!!为什么?OK;开始创建表:insert into t
values
("a1","a2","a3","a4","a5"),
("b1","b2","b3","b4","b5");插入数据:insert into t
values
("a1","a2","a3","a4","a5"),
("b1","b2","b3","b4","b5");添加索引:alter table t add index c1234(c1,c2,c3,c4);对第一种情况:说明c1,c2,c3,c4被使用稍作改变:使用group by 一般先生成临时文件,在进行排序order by 哪?同上面类似啦稍微改变一下,分析:知道原理都很容易啦!上面问题答案是多少?反正我是不知道!总结规律可得:--------------------------------------分割线 --------------------------------------Ubuntu 14.04下安装MySQL http://www.linuxidc.com/Linux/2014-05/102366.htm《MySQL权威指南(原书第2版)》清晰中文扫描版 PDF http://www.linuxidc.com/Linux/2014-03/98821.htmUbuntu 14.04 LTS 安装 LNMP NginxPHP5 (PHP-FPM)MySQL http://www.linuxidc.com/Linux/2014-05/102351.htmUbuntu 14.04下搭建MySQL主从服务器 http://www.linuxidc.com/Linux/2014-05/101599.htmUbuntu 12.04 LTS 构建高可用分布式 MySQL 集群 http://www.linuxidc.com/Linux/2013-11/93019.htmUbuntu 12.04下源代码安装MySQL5.6以及Python-MySQLdb http://www.linuxidc.com/Linux/2013-08/89270.htmMySQL-5.5.38通用二进制安装 http://www.linuxidc.com/Linux/2014-07/104509.htm--------------------------------------分割线 --------------------------------------本文永久更新链接地址