码迷,mamicode.com
首页 > 其他好文 > 详细

不用聚合函数求最高工资

时间:2015-08-09 20:44:15      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:不用聚合函数求最高工资   最高工资   关联查询   rownum   


对于emp 表,不用聚合函数求出最高工资

技术分享


如果使用聚合函数的话,求出最高工资比较方便

select max(sal) from emp;
技术分享


如果不使用聚合函数的话,该从哪个方向出发呢?

可以排序,然后从排序后的结果中取工资最高的;可以取出除最高工资之外的所有工资,然后再排除,剩下最高工资。


method1  按工资收入降序排列

select * from emp order by sal desc

技术分享


工资最高的5000 就排在第一个,接下来再取第一个即可

select a.sal from (select * from emp order by sal desc) a where rownum = 1;

技术分享


method2  取最高工资之外的所有工资

select e2.sal from emp e1,emp e2 where e1.sal>e2.sal;

这里采用自连接,判断条件 e1.sal > e2.sal,结果取的是e2.sal,这注定最高工资不可能出现在结果集中

技术分享


然后 再在emp 表中,排除掉上面结果集的sal,剩余的就是最高的sal了

select e.sal from emp e where e.sal not in(select e2.sal from emp e1,emp e2 where e1.sal>e2.sal);

技术分享


看到第二种方法,突然想到第三种方法,那就是用上distinct 和 minus


method3  沿用 method2 的思路

select distinct e2.sal from emp e1,emp e2 where e1.sal>e2.sal;

技术分享

再用emp 中所有sal 和 上面集合中的sal 求minus

select distinct sal from emp
minus
select distinct e2.sal from emp e1,emp e2 where e1.sal>e2.sal;

技术分享


好了,这里介绍三种方法,你还有其它的方法吗,分享出来吧,一起学习。



版权声明:本文为博主原创文章,未经博主允许不得转载。

不用聚合函数求最高工资

标签:不用聚合函数求最高工资   最高工资   关联查询   rownum   

原文地址:http://blog.csdn.net/magi1201/article/details/47379101

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