반응형
https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier/
left outer join을 사용해본 문제였습니다.
📕 풀이방법
📔 풀이과정
Employees에서 EmployeeUNI를 id에 대해서 left outer join을 하게 되면 Employee의 name에 해당하는 id가 EmployeeUNI에 없다면 id를 null로 채워 select하게 됩니다.
📕 Code
📔 SQL
select u.unique_id, e.name from Employees e
left outer join EmployeeUNI u on e.id = u.id
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'SQL' 카테고리의 다른 글
(SQL) - LeetCode (easy) 1581. Customer Who Visited but Did Not Make Any Transactions (0) | 2024.04.30 |
---|---|
(SQL) - LeetCode (easy) 1407. Top Travellers (0) | 2024.03.12 |
(Tibero 7) - varray 찍먹하기 (0) | 2024.02.05 |
(SQL) - LeetCode (easy) 1280. Students and Examinations (0) | 2024.01.12 |
(SQL) - LeetCode (easy) 1179. Reformat Department Table (1) | 2023.11.22 |