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

10.2 查找同一组或分区中行之间的差

时间:2017-09-14 23:32:55      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:and   ast   where   查找   next   har   rom   tno   sel   

select deptno,ename,hiredate,sal,
coalesce(cast(sal-next_sal as char(10)),‘N/A‘) as diff
from (
select e.deptno,
e.ename,
e.hiredate,
e.sal,
(select min(sal) from emp d
where d.deptno=e.deptno
and d.hiredate =
(select min(hiredate) from emp d
where e.deptno=d.deptno
and d.hiredate > e.hiredate)) as next_sal
from emp e
) x 
order by 1;

10.2 查找同一组或分区中行之间的差

标签:and   ast   where   查找   next   har   rom   tno   sel   

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

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