不用聚合函数求最高工资


对于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;


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



  • 5
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值