DEV Community

Debesh P.
Debesh P.

Posted on

1378. Replace Employee ID With The Unique Identifier | LeetCode | SQL 50 | Interview Questions | MySQL

Problem Link

https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier/


leetcode 1378


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;
Enter fullscreen mode Exit fullscreen mode

Top comments (0)