很实用的mysql优化 **学习**
一
MYSQL中的普通索引,主健,唯一,全文索引区别:[添加链接描述](https://www.cnblogs.com/crazylqy/p/4361394.html)
告别慢SQL,如何去写一手好SQL ?
点击链接,
SQL优化(五)索引长度介绍 (经典)
https://blog.csdn.net/liyazhen2011/article/details/82787438
mysql联合索引的使用规则
https://blog.csdn.net/wdjxxl/article/details/79790421
执行计划中Using filesort,Using temporary相关语句的优化解决
点击链接,亲测 效率高了几十倍
实战优化指南
https://www.cnblogs.com/fengyumeng/p/9888148.html
二、下面是总结的是联合索引的使用
Index(Name,Age)表示在Name,Age两列上建立联合索引
如果where name=‘pp’ 能使用索引
where age=25时不能使用索引
where name=‘pp’ and age>25 能使用索引
where name =‘pp’ order by age 能使用索引
where name>‘pp’ order by age 不能使用索引
where name>‘pp’ order by name,age 能使用索引
order by name asc age desc 将不能使用索引