11.07 存取“未来”行
Posted 长城之上是千亿的星空,星空之上是不灭的守望。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了11.07 存取“未来”行相关的知识,希望对你有一定的参考价值。
找到满足这样条件的员工:即他的收入比紧随其后聘用的员工要少。
select ename,sal,hiredate
from (
select a.ename,a.sal,a.hiredate,
(select min(hiredate) from emp b
where b.hiredate>a.hiredate
and b.sal>a.sal) as next_sal_grtr,
(select min(hiredate) from emp b
where b.hiredate>a.hiredate) as next_hire
from emp a
)x
where next_sal_grtr=next_hire;
以上是关于11.07 存取“未来”行的主要内容,如果未能解决你的问题,请参考以下文章