#部门(时间限制)--员工当前薪水最高
#d001部门有3名员工,薪水表符合时间限制的有两条记录,分别来自2名员工,而输出结果只有一条。
#所以题目中的薪水最高是针对部门而不是某个员工

select d.dept_no
        ,s.emp_no
        ,s.salary
from salaries s,dept_emp d
where s.emp_no=d.emp_no
and d.to_date = '9999-01-01'
and s.to_date='9999-01-01'
and (d.dept_no,s.salary) in(select d.dept_no,max(s.salary)
                         from salaries s
                         join dept_emp d on s.emp_no=d.emp_no
                         where d.to_date = '9999-01-01'
                         and s.to_date='9999-01-01'
                         group by d.dept_no)
order by d.dept_no;