select
aa.acct_org,
aa.loan_acct_no,
aa.FUNCTIONARY,
aa.cust_no,
sum(dwm.pkg_tools.currcdtran(bb.INTT,aa.trans_cur_cd,'T00CNY','2014-02-10')) as jtlx
from dwf.F_AGT_LONC_BASIC_INFO_H aa
left join dwf.f_agt_comr_intdist_h bb
on aa.loan_acct_no=bb.agmt_id
and bb.dw_data_dt>=to_date('2014-01-01','yyyy-mm-dd')
and bb.dw_data_dt<=to_date('2014-02-10','yyyy-mm-dd')
where aa.start_dt<=to_date('2014-02-10','yyyy-mm-dd')
and aa.end_dt>to_date('2014-02-10','yyyy-mm-dd')
and aa.trans_cur_cd<>'T00CNY'
group by aa.acct_org,aa.loan_acct_no,aa.FUNCTIONARY,aa.cust_no
having sum(bb.payable_
创建组合索引SQL从1个多小时到1S的案例
最新推荐文章于 2022-04-21 16:32:25 发布
这篇博客通过一个实际案例展示了如何使用创建组合索引来优化SQL查询。原来的一个SQL查询在没有索引的情况下执行耗时1小时以上,通过在`dwf.f_agt_comr_intdist_h`表上创建`agmt_id, intt, payable_int_amt, dw_data_dt`的组合索引,查询时间大幅减少到仅需1秒。博客详细记录了查询计划、优化前后的执行计划和成本对比,强调了大表作为驱动表的重要性以及考虑使用Index Fast Full Scan的策略。"
113921867,9385327,理解Web集群:概念、特点与应用,"['web集群', '负载均衡集群', '高可用集群', '高性能计算集群', '网格计算']
摘要由CSDN通过智能技术生成