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

7.08 计算累计差

时间:2017-09-14 23:24:36      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:rom   from   select   sel   where   sele   when   dep   ase   

问题:对于数字列中的值,计算其累计差。例如:计算DEPTNO 10中工资的累计差。

select a.empno,a.ename,a.sal,
(select case when a.empno=min(b.empno) then sum(b.sal)
else sum(-b.sal)
end
from emp b 
where b.empno<=a.empno
and b.deptno=a.deptno) as rnk
from emp a
where a.deptno=10;

7.08 计算累计差

标签:rom   from   select   sel   where   sele   when   dep   ase   

原文地址:http://www.cnblogs.com/liang545621/p/7523273.html

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