码迷,mamicode.com
首页 > 数据库 > 详细

oracle 性能优化操作十二: 用Case语句合并多重扫描

时间:2015-01-07 09:22:46      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

我们常常必须基于多组数据表计算不同的聚集。例如下例通过三个独立查询:

select count(*) from emp where sal<1000;

select count(*) from emp where sal between 1000 and 5000;

select count(*) from emp where sal>5000;

这样我们需要进行三次全表查询,但是如果我们使用case语句:

select 

count (sale when sal <1000

then 1 else null end)              count_poor,

count (sale when between 1000 and 5000

then 1 else null end)              count_blue_collar,

count (sale when sal >5000

then 1 else null end)              count_poor

from emp;

这样查询的结果一样,但是执行计划只进行了一次全表查询。

oracle 性能优化操作十二: 用Case语句合并多重扫描

标签:

原文地址:http://blog.csdn.net/helloboat/article/details/42486713

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!