From 7306444b71240f68523b2b01ca157b3a367ff443 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Antonio=20Chac=C3=B3n=20Guti=C3=A9rrez?= <138903866+joseantoniochacon@users.noreply.github.com> Date: Fri, 31 May 2024 10:41:01 -0600 Subject: [PATCH] Time: 2443 ms (42.51%), Space: 0B (100.00%) - LeetHub --- .../1378-replace-employee-id-with-the-unique-identifier.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 1378-replace-employee-id-with-the-unique-identifier/1378-replace-employee-id-with-the-unique-identifier.sql diff --git a/1378-replace-employee-id-with-the-unique-identifier/1378-replace-employee-id-with-the-unique-identifier.sql b/1378-replace-employee-id-with-the-unique-identifier/1378-replace-employee-id-with-the-unique-identifier.sql new file mode 100644 index 0000000..76bda99 --- /dev/null +++ b/1378-replace-employee-id-with-the-unique-identifier/1378-replace-employee-id-with-the-unique-identifier.sql @@ -0,0 +1,2 @@ +# Write your MySQL query statement below +SELECT Employees.name, EmployeeUNI.unique_id FROM Employees LEFT JOIN EmployeeUNI ON Employees.id = EmployeeUNI.id; \ No newline at end of file