Date and Time: Mar 14, 2025, 00:40 (EST)
Link: https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier
SELECT ... FROM first_table LEFT JOIN second_table ON ...
retrieves all rows from the first table, and the matching rows from the 2nd table based on the same column.
SELECT EmployeeUNI.unique_id, Employees.name
FROM Employees
LEFT JOIN EmployeeUNI ON Employees.id = EmployeeUNI.id;