📜  如何让员工在 mysql 代码示例中拥有最大的经验

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

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