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 5aff15e commit 96ef209Copy full SHA for 96ef209
1077-project-employees-iii.sql
@@ -0,0 +1,9 @@
1
+# Write your MySQL query statement below
2
+SELECT P.project_id, E.employee_id
3
+FROM Project as P
4
+INNER JOIN Employee as E On E.employee_id = P.employee_id
5
+WHERE (P.project_id , E.experience_years) in (
6
+SELECT P.project_id, MAX(E.experience_years)
7
8
9
+GROUP BY P.project_id);
0 commit comments