摘要: 常见的SQL优化 一、查询优化 1、避免全表扫描 模糊查询前后加%也属于全表扫描 在where子句中对字段进行表达式操作会导致引擎放弃使用索引而进行全表扫描,如: select id from t where num/2=100 应改为: select id from t where num=100 阅读全文
posted @ 2019-09-11 21:48 MengW9 阅读(332) 评论(0) 推荐(0) 编辑