Leecode - 1378. Replace Employee ID With The Unique Identifier
2023-02-06 13:42

Leecode - 1378. Replace Employee ID With The Unique Identifier

Problem
Solution
SELECT unique_id, name
FROM Employees
LEFT JOIN EmployeeUNI ON Employees.id = EmployeeUNI.id

댓글