We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c37cd72 commit e72ac47Copy full SHA for e72ac47
1378-replace-employee-id-with-the-unique-identifier.sql
@@ -0,0 +1,9 @@
1
+# Write your MySQL query statement below
2
+SELECT
3
+ EmployeeUNI.unique_id, Employees.name
4
+FROM
5
+ Employees
6
+LEFT JOIN
7
+ EmployeeUNI
8
+ON
9
+ Employees.id = EmployeeUNI.id;
0 commit comments