SQL语句优化1: 避免索引列的计算

写SQL语句时应该避免在索引列上做计算,能移到另一方的都移动到另一方。

下面是测试的例子,索引列为D_DATE

 1 SQL> select count(1)
 2   2    from tywtx a
 3   3   where a.d_date >= to_date('20100312', 'yyyymmdd')
 4   4     and a.d_date < to_date('20100312', 'yyyymmdd') + 1
 5   5  ;
 6  
 7   COUNT(1)
 8 ----------
 9         59
10  
11 Executed in 0.032 seconds
12  
13 SQL> alter system flush shared_pool;
14  
15 System altered
16  
17 Executed in 0.031 seconds
18  
19 SQL> select count(1) from tywtx a where trunc(a.d_date) = to_date('20100312', 'yyyymmdd');
20  
21   COUNT(1)
22 ----------
23         59
24  
25 Executed in 0.078 seconds

同样的语句,性能相差近一倍。

转载于:https://www.cnblogs.com/zhanglt/archive/2013/05/04/3058979.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值