left join 索引笔记

Mysql中 JOIN 联表查询中索引使用情况

学习的过程中,发现left join 查询 三张表,耗时20s,三张表分别是1000,1000,10000行的数据量

第一次尝试的解决方法是通过子查询降低连表的行数,失败了

第二次是尝试left join在索引中的运用

假设有表一 student(id, card_id)  表二 info(id,in_card_id,other),student的card_id不带索引,info表的in_card_id带索引

那么

select * from student LEFT JOIN info on card_id = in_card_id # 会使用索引
select * from info LEFT JOIN student  on card_id = in_card_id # 不会使用索引

而right join 则会反过来,总之没有拥有自身整个集合的,就可以使用索引。

而使用join,测试中无论哪边都使用了索引。

最后使用了join和选择一些有索引的字段比较进行了解决,查询时间在一秒内。

还有一个场景是,联合索引的最左匹配原则。

参考排查

explain 命令

笛卡尔积概念

show index

sql join 连接

你可能感兴趣的:(Java,java,mysql,索引)