본문 바로가기

IT/코딩테스트

[Leetcode] 1378. Replace Employee ID With The Unique Identifier

728x90

https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier/

SELECT u.unique_id, e.name 
FROM Employees AS e
LEFT JOIN EmployeeUNI AS u ON e.id = u.id;
728x90