Problem Link
https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier/
Solution
# Write your MySQL query statement below
select
eu.unique_id,
e.name
from
Employees e left join EmployeeUNI eu
on eu.id = e.id;
Problem Link
https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier/
# Write your MySQL query statement below
select
eu.unique_id,
e.name
from
Employees e left join EmployeeUNI eu
on eu.id = e.id;
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)