MySQL索引优化
2023-06-20 09:15:54 11 举报
AI智能生成
Mysql索引优化
作者其他创作
大纲/内容
使用联合索引
index(indexname)强制走索引
覆盖索引优化
索引下推
Order by与Group by走索引
不要在小基数字段上建立索引
长字符串我们可以采用前缀索引 index(name(20),age,position)
where与order by冲突时优先where
Join关联查询优化
嵌套循环连接 Nested-Loop Join(NLJ) 算法
基于块的嵌套循环连接 Block Nested-Loop Join(BNL)算法
in和exsits优化
0 条评论
下一页