ETH官方钱包

創作內容

0 GP

【Leetcode】184. Department Highest Salary

作者:Chris│2023-09-07 19:12:03│巴幣:0│人氣:139
Leetcode題目網址:184. Department Highest Salary
難度:Medium

Employee表格屬性
Column Name Type
id int
name varchar
salary int
departmentId int
id is the primary key (column with unique values) for this table.
departmentId is a foreign key (reference columns) of the ID from the Department table.
Each row of this table indicates the ID, name, and salary of an employee. It also contains the ID of their department.
id為該表的主鍵(具有唯一值的列),
DepartmentId 是 Department 表中 ID 的外鍵(引用列)。
該表的每一行表示員工的 ID、姓名和薪水。它還包含其部門的 ID。

Department表格屬性
Column Name Type
id name
name varchar
id is the primary key (column with unique values) for this table. It is guaranteed that department name is not NULL.
Each row of this table indicates the ID of a department and its name
id為該表的主鍵(具有唯一值的列),部門名稱不為Null,該表的每一行顯示部門的id及名稱。

原文:
Write a solution to find employees who have the highest salary in each of the departments.
Return the result table in any order.

The result format is in the following example

個人翻譯(並非逐字翻譯):
編寫一個解決方案,查找每個部門中薪水最高的員工。以任意順序顯示出查詢結果。
.
輸入:
Employee table:
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 table:
id name
1 IT
2 Sales

輸出:
Department Employee Salary
IT Jim 90000
Sales Henry 80000
IT Max 90000
Explanation:
Max and Jim both have the highest salary in the IT department and Henry has the highest salary in the Sales department.
Max和Jimy在IT部門的薪資最高,Henry在銷售部門的薪資最高。


個人理解
這邊使用Left Join語法將兩個資料表組合在一起,再使用Max語法找出最大數值,再使用Where把最大數值挑出來,就會剩下第二高的數值。

這裡著重於使用Where(columns name)In(要選擇的值)、Max函數,以及雙層Select,這裡個人理解成類似巢狀迴圈的模式。
程式碼
select Department.name as Department, Employee.name as Employee, Employee.Salary as Salary

from Employee
left join Department #inner join也可
on Employee.departmentId = Department.id
where (Department.id, Employee.Salary) in (
  select departmentId, max(Salary)
  from Employee
  group by departmentId
)
#where (COLUMNS) in (需要放的值)0

引用網址:http://www.jamesdambrosio.com/TrackBack.php?sn=5789635
All rights reserved. 版權所有,保留一切權利

相關創作

同標籤作品搜尋:Leetcode|SQL

留言共 0 篇留言

我要留言提醒:您尚未登入,請先登入再留言

喜歡★lorkcter5413 可決定是否刪除您的留言,請勿發表違反站規文字。

前一篇:【Leetcode】17... 後一篇:【RPG公會】...


face基於日前微軟官方表示 Internet Explorer 不再支援新的網路標準,可能無法使用新的應用程式來呈現網站內容,在瀏覽器支援度及網站安全性的雙重考量下,為了讓巴友們有更好的使用體驗,巴哈姆特即將於 2019年9月2日 停止支援 Internet Explorer 瀏覽器的頁面呈現和功能。
屆時建議您使用下述瀏覽器來瀏覽巴哈姆特:
。Google Chrome(推薦)
。Mozilla Firefox
。Microsoft Edge(Windows10以上的作業系統版本才可使用)

face我們了解您不想看到廣告的心情? 若您願意支持巴哈姆特永續經營,請將 gamer.com.tw 加入廣告阻擋工具的白名單中,謝謝 !【教學】