leetcode

Leetcode submissions
git clone git://git.laack.co/leetcode.git
Log | Files | Refs | README

replace-employee-id.sql (194B)


      1 --Return the employees with their unique_id that
      2 --is stored in another table.
      3 SELECT EmployeeUNI.unique_id, Employees.name
      4 FROM Employees
      5 LEFT JOIN EmployeeUNI
      6 ON Employees.id = EmployeeUNI.id