## 索引优化 ##
一、如何选择合适的列建立索引
在where从句,group by 从句,on从句中出现的列
索引字段越小越好
- 离散度大的列放到联合索引的前面
select *from payment where staff_id=2 and customer_id=369;
由于customer_id的离散度更大,所以应该使用index(customer_id,staff_id)
二、索引优化SQL方法
索引的维护及优化:重复及冗余索引
重复的索引是指相同的列以相同的顺序建立的同类型索引,如下所示:
primary和id列上的索引就是重复索引
create table test(
id int null primary key,
name varchar(10) not null,
tittle varchar(50) not null,
key(name,id)
)engine=innodb;
检查索引是否冗余:
使用工具pt-duplicate-key-checker检查重复及冗余索引
Pt-duplicate-key-checker\
-u root\
-p ‘’\密码
-h 127.0.0.1
三、索引维护的方法
目前MySQL中还没有记录索引的使用情况,但是在perconmysql和mariaDB中可以通过INDEX_STATISTICS表来查看哪些索引未使用,但在 MYSQL中目前只能通过慢查询日志配合pt-index-usage工具来进行索引使用情况分析。
Pt-index-usage\
-uroot -p’’\
Mysql_slow.log