Skip to content

Commit

Permalink
Time: 841 ms (90.92%), Space: 0B (100.00%) - LeetHub
Browse files Browse the repository at this point in the history
  • Loading branch information
joseantoniochacon committed Jun 4, 2024
1 parent 3e55fcd commit 3c263d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 1075-project-employees-i/1075-project-employees-i.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Write your MySQL query statement below
SELECT project_id, ROUND(AVG(experience_years),2) AS average_years FROM Project proj LEFT JOIN Employee emp ON proj.employee_id = emp.employee_id GROUP BY project_id;

0 comments on commit 3c263d6

Please sign in to comment.