1378. Replace Employee ID With The Unique Identifier
https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier/
select unique_id, name from employees emp left join EmployeeUNI emp_uni on emp.id = emp_uni.id ;
1378. Replace Employee ID With The Unique Identifier
https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier/
select unique_id, name from employees emp left join EmployeeUNI emp_uni on emp.id = emp_uni.id ;