文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

left join没有走索引的原因是什么及怎么解决

2023-07-05 15:20

关注

本篇内容主要讲解“left join没有走索引的原因是什么及怎么解决”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“left join没有走索引的原因是什么及怎么解决”吧!

查一次left join没有走索引的原因

线上有个查询sql,原来是inner join 查询没有问题,后来应业务要求改成left join之后, 查询时间就暴涨了 需要长达24s

left join没有走索引的原因是什么及怎么解决

通过explain分析,发现订单表没有走索引 ,分析之后解决了,记录下来。

为了简洁起见,这里就将无关的查询字段都用*

具体sql如下

SELECT  *  from t_item_detail a left join t_order_detail d on a.order_code=d.order_code left join t_connection b on a.unique_code = b.funds_unique  left join t_capital_detail c on b.capital_unique = c.unique_code  where item_receipt_disbursement=1 and a.is_deleted=0  and order_type_code=00901 group by a.unique_code LIMIT 10

用explain命令分析如下

left join没有走索引的原因是什么及怎么解决

发现table d 的type为all, rows居然高达20万行 。

d对应的表为order_detail 表,type为all 说明并没有走索引。

这里首先看关联条件

from t_item_detail a left join t_order_detail d on a.order_code=d.order_code

该条件并无问题,然后这两张表的order_code字段是否加索引.

left join没有走索引的原因是什么及怎么解决

left join没有走索引的原因是什么及怎么解决

两张表的order_code字段均有索引。

其次再看, 如果两个字段或者两张表的编码不同,也会导致索引失效。

但是这两张表的编码和字段编码也均相同,因此也排除掉。

最后发现,

如果写成

 explain SELECT  *  from t_item_detail a left join t_order_detail d on a.order_code=d.order_code  and d.order_type_code=00901 left join t_connection b on a.unique_code = b.funds_unique  left join t_capital_detail c on b.capital_unique = c.unique_code  where item_receipt_disbursement=1 and a.is_deleted=0  group by a.unique_code LIMIT 10

也就是将原来在where条件的order_type_code=00901 写到left join的条件后面

left join没有走索引的原因是什么及怎么解决

d的索引就生效了,所有的索引都生效了。

查询时间也从原来的24秒 变成了不到1秒。

left join没有走索引的原因是什么及怎么解决

这是为什么呢?

其实问题就出在这个 d.order_type_code=00901 这个条件上

当有这个条件时候

left join没有走索引的原因是什么及怎么解决

全文扫描

没有这个条件的时候

left join没有走索引的原因是什么及怎么解决

从sql的执行顺序来分析:

SELECT  *  from t_item_detail a left join t_order_detail d on a.order_code=d.order_code left join t_connection b on a.unique_code = b.funds_unique  left join t_capital_detail c on b.capital_unique = c.unique_code  where item_receipt_disbursement=1 and a.is_deleted=0  and order_type_code=00901 group by a.unique_code LIMIT 10

这里面的执行顺序为

写的顺序:select … from… where… group by… having… order by… limit [offset,](rows)

执行顺序:from… where…group by… having… select … order by… limit

知道这个,我们再看这个sql

不走索引 有order_type_code条件

SELECT *from t_item_detail aleft join t_order_detail d on a.order_code=d.order_codeleft join t_connection b on a.unique_code = b.funds_uniqueleft join t_capital_detail c on b.capital_unique = c.unique_codewhere item_receipt_disbursement=1 and a.is_deleted=0and order_type_code=00901 group by a.unique_code LIMIT 10

走索引 没有order_type_code条件

SELECT *from t_item_detail aleft join t_order_detail d on a.order_code=d.order_codeleft join t_connection b on a.unique_code = b.funds_uniqueleft join t_capital_detail c on b.capital_unique = c.unique_codewhere item_receipt_disbursement=1 and a.is_deleted=0group by a.unique_code LIMIT 10

和走索引有没有order_type_code条件

SELECT *from t_item_detail aleft join t_order_detail d on a.order_code=d.order_code and d.order_type_cod=‘00901'left join t_connection b on a.unique_code = b.funds_uniqueleft join t_capital_detail c on b.capital_unique = c.unique_codewhere item_receipt_disbursement=1 and a.is_deleted=0group by a.unique_code LIMIT 10

会发现 在不走索引有order_type_code条件的那个sql中, 在执行到where的时候,需要去找到条件 order_type_code=00901 ,但是order_type_code这个字段没有索引,所以数据库就去对order_detail进行全表扫描。

因此解决方案

就是给order_type_code加上索引,或者给 left join on就加上条件order_type_code=xxx ,直接过滤掉

因此,谨记,大表查询的时候,where 的条件千万记得加上索引!!!!

到此,相信大家对“left join没有走索引的原因是什么及怎么解决”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯