• 通过加索引对sql语句优化


    今天看数据库的时候遇到这样一个SQL语句:

    select
    
    substr(a.djxh,6) as id,
           (a.nd || a.yf) DECL_YM,
           a.zspm_dm as LEVY_ITEM_ID,
           b.zsxmmc  as LEVY_ITEM_NAME, --||'--'||d.zspmmc
           100 as DECL_STATUS,
           a.nsqx_dm as TAX_TERM_CODE,
           c.nsqxmc  as TAX_TERM_NAME,
           to_char(a.sbqx, 'yyyyMMdd') as DECL_TREM,
           to_char(a.sjtb_sj, 'yyyyMM') as DATA_CREATE_YM,
           a.sjgsdq as area_code
           from
    (
    select djxh, nd, yf, zspm_dm, nsqx_dm, sbqx, sjtb_sj, sjgsdq,zsxm_dm
      from tci.sb_ysbtj
     where zfbz_1 is null
       or zfbz_1 = 'N'
       and exists (select *
              from (select to_number('10124' || i.id) as iid
                      from i_reg_account i
                     where mgr_dept in
                           (select t.org_id
                              from i_organization t
                             where t.isdirectguanhu = 1
                             start with (t.org_id = 24300900000)
                            connect by prior t.org_id = t.parent_id)) d
             where djxh = iid)
       and trim(yf) = to_char(sysdate, 'MM')
       and nd = to_char(SysDate, 'YYYY')
    
    ) a left join dm_gy_zsxm b
    on a.zsxm_dm = b.zsxm_dm
    left join dm_gy_nsqx  c
    on a.nsqx_dm = c.nsqx_dm

    sb_ysbtj有900万的数据量,查询了很久都没有出来。后来网上找资料别人说第一要加上索引。后来给每个需要查询的列都加上了索引,速度快了很多。

  • 相关阅读:
    在路上(转)
    我,机器
    梧桐道上
    傅盛:如何快慢“炼”金山?(转)
    [JS]笔记15之客户端存储cookie
    [JS]笔记14之事件委托
    [JS]笔记13之Date对象
    将博客搬至CSDN
    [JS]笔记12之事件机制--事件冒泡和捕获--事件监听--阻止事件传播
    [JS]笔记11之正则表达式
  • 原文地址:https://www.cnblogs.com/andrew-chen/p/5001498.html
Copyright © 2020-2023  润新知