- Published on
Leecode - 1378. Replace Employee ID With The Unique Identifier
- Authors
- Name
- Indo Yoon
Table of Contents
Problem
[Replace Employee ID With The Unique Identifier - LeetCode
Replace Employee ID With The Unique Identifier - Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
LeetCode
](https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier/description/)
Solution
SELECT unique_id, name
FROM Employees
LEFT JOIN EmployeeUNI ON Employees.id = EmployeeUNI.id