[LeetCode/SQL] 1378. Replace Employee ID With The Unique Identifier

Sooyeon·2023년 11월 14일
0

문제풀이 

목록 보기
46/95
post-thumbnail

[LeetCode/SQL]


📌 1378. Replace Employee ID With The Unique Identifier

문제

풀이

- unique_id 별 직원 이름을 출력하라
=> 만약 unique_id가 없을 경우, null값 출력=>left join 사용하기 

방법

SELECT eu.unique_id
      ,e.name
FROM Employees AS e
LEFT JOIN EmployeeUNI AS eu
ON eu.id=e.id

0개의 댓글