select /*+ parallel(d 16)*/ count(*) from t47_transaction_uh d
--174027378
select /*+ parallel(d 16)*/ count(*) from t47_transaction_uh d
where d.TX_DT BETWEEN DATE '2015-10-01' AND DATE
'2017-04-30'
and d.ORGANKEY like '3303%'
and d.OVERAREA_IND = 1
and d.TRANSACTIONKEY LIKE 'DEP%'
--5626
select /*+ parallel(d 16)*/ count(*) from t47_transaction_uh d where d.ORGANKEY like '3303%'
--6135723
select /*+ parallel(d 16)*/ count(*) from t47_transaction_uh d where d.TRANSACTIONKEY LIKE 'DEP%'
--152747335
select /*+ parallel(d 16)*/ count(*) from t47_transaction_uh d where d.ORGANKEY like '3303%
利用组合索引优化
最新推荐文章于 2024-07-30 19:25:37 发布
本文深入探讨了如何通过创建和使用组合索引来提升数据库查询效率。内容包括组合索引的原理、最佳实践以及如何根据具体业务场景选择合适的索引策略,帮助开发者优化数据库性能。
摘要由CSDN通过智能技术生成