Site: LeetCode
Difficulty per Site: Easy
Write a solution to show the unique ID of each user, If a user does not have a unique ID replace just show null
.
Return the result table in any order. [Full Description]
-- Submitted Solution
SELECT
e2.unique_id
,e1.name
FROM Employees as e1
LEFT JOIN EmployeeUNI as e2 ON e1.id = e2.id
;
-- LeetCode Solution
-- Site solution essentially the same.
TODO
TBD