184.部门最高薪水
标签: array
, hash-table
, sort
难度: Medium
通过率: 53.38%
原题链接: https://leetcode.com/problems/department-highest-salary/description/
题目描述
编写一个SQL查询,找出每个部门中薪水最高的员工。返回的结果表的格式如给出的例子。
示例 1:
输入: Employee 表:
id | name | salary | departmentId |
---|---|---|---|
1 | Joe | 70000 | 1 |
2 | Jim | 90000 | 1 |
3 | Henry | 80000 | 2 |
4 | Sam | 60000 | 2 |
5 | Max | 90000 | 1 |
Department 表:
id | name |
---|---|
1 | IT |
2 | Sales |