📜  sql代码示例中的第一个最高薪水

📅  最后修改于: 2022-03-11 15:04:59.699000             🧑  作者: Mango

代码示例4
select max(salary), dept_id from employee where salary not in(select max(salary) from employee) group by dept_id;