首页 > 数据库技术 > 详细

通过加索引对sql语句优化

时间:2015-11-27 19:48:54      阅读:411      评论:0      收藏:0      [点我收藏+]

今天看数据库的时候遇到这样一个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万的数据量,查询了很久都没有出来。后来网上找资料别人说第一要加上索引。后来给每个需要查询的列都加上了索引,速度快了很多。

 

通过加索引对sql语句优化

原文:http://www.cnblogs.com/andrew-chen/p/5001498.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!