博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
诊断一句SQL不走索引的原因
阅读量:6091 次
发布时间:2019-06-20

本文共 2029 字,大约阅读时间需要 6 分钟。

from http://www.itpub.net/thread-1852897-1-1.html

有论坛朋友在上面的帖子里问SQL为什么不走索引,正好这两天我也刚刚在看SQL优化,于是试着回答了一下.

下面是原来的SQL:

select o.order_id as orderId  from order_info o, member m

where m.member_id = o.member_id
   and o.is_delete = 'N'
   /*and (to_date(nvl(o.paid_time,o.commit_time), 'YYYY-MM-DD hh24:mi:ss') >=
       to_date('2014-03-27 00:00:00', 'YYYY-MM-DD hh24:mi:ss'))
   and (to_date(nvl(o.paid_time,o.commit_time), 'YYYY-MM-DD hh24:mi:ss') <=
       to_date('2014-03-27 23:59:59', 'YYYY-MM-DD hh24:mi:ss'))*/
   and o.commit_time like '2014-03-27%'
   and ((o.payment_mode = 'KDFH' and o.IS_PAID = 'Y') or
       (o.payment_mode = 'HDFK'))
   and o.order_state NOT in (18, 19, 25)
   and (exists (select 1
                  from fecerp.sys_role_select rs, fecerp.sys_role_user su
                 where su.role_id = rs.role_id
                   and su.user_id = 3132
                   and su.is_delete = 'N'
                   and rs.othera = 0) OR exists
        (select 1
           from fecerp.sys_role_select   rs,
                fecerp.sys_role_user     su,
                product_yw_catalog       pyc,
                product_yw_catalog_goods ycg,
                order_item               oi
          where su.role_id = rs.role_id
            and pyc.yw_catalog_id = ycg.wy_catalog_id
            and su.user_id = 3132
            and rs.othera <> 0
            and su.is_delete = 'N'
            and ',' || rs.bus_ids || ',' like
                '%,' || pyc.yw_catalog_id || ',%'
            and oi.order_id = o.order_id
            and oi.is_delete = 'N'
            and ycg.goods_no = oi.goods_no))
   and (select m.multi_channel_id
          from ec_multi_channel m
         where m.multi_channel_id = o.multi_channel_id) in
       (select ser.multi_channel_id
          from fecerp.sys_role_channel ser, fecerp.sys_role_user uss
         where ser.role_id = uss.role_id
           and ser.is_delete = 'N'
           and uss.is_delete = 'N'
           and uss.user_id = 3132)

执行计划:

 

order_info 索引如下:

和统计信息的关系不大,至少表order_info 的统计信息是正确的,否则table full access的cost不会这么高. 

不走索引应该是下面的原因.

  • o.is_delete = 'N'  --这个字段上没有索引
  • o.commit_time like '2014-03-27%'  --这个字段上没有索引
  • ((o.payment_mode = 'KDFH' and o.IS_PAID = 'Y') or (o.payment_mode = 'HDFK'))  --在payment_mode 和 IS_PAID 上虽然分别有索引,但是 对于条件 o.payment_mode = 'KDFH' and o.IS_PAID = 'Y') 如果走索引,那么是需要同时判断这两个字段的值. 这里没有基于这两个字段的索引,所以也走不了.
  • o.order_state NOT in (18, 19, 25) -- not in 排除常量,走不了索引

推荐在 payment_mode  和 IS_PAID 上建立一个组合索引.

 

转载地址:http://qjlwa.baihongyu.com/

你可能感兴趣的文章
poj 3984迷宫问题【广搜】
查看>>
oracle ORA-01840:输入值对于日期格式不够长
查看>>
python基础知识~logger模块
查看>>
SIP入门(二):建立SIPserver
查看>>
Servlet3.0的异步
查看>>
WebService连接postgresql( 失败尝试)
查看>>
从头认识java-13.11 对照数组与泛型容器,观察类型擦除给泛型容器带来什么问题?...
查看>>
Python-MacOSX下SIP引起的pip权限问题解决方案(非取消SIP机制)
查看>>
从MFQ方法到需求分析
查看>>
android.view.WindowManager$BadTokenException: Unable to add window
查看>>
HDU5012:Dice(bfs模板)
查看>>
iphone openssh
查看>>
Linux下MEncoder的编译
查看>>
spark高级排序彻底解秘
查看>>
ylbtech-LanguageSamples-PartialTypes(部分类型)
查看>>
福建省促进大数据发展:变分散式管理为统筹集中式管理
查看>>
开发环境、生产环境、测试环境的基本理解和区别
查看>>
tomcat多应用之间如何共享jar
查看>>
Flex前后台交互,service层调用后台服务的简单封装
查看>>
MySQL入门12-数据类型
查看>>