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 e01c946 commit 45f9345Copy full SHA for 45f9345
BASIC AGGREGATION FUNCTION/1075. Project Employees I.sql
@@ -0,0 +1,5 @@
1
+-- Write your PostgreSQL query statement below
2
+SELECT p.project_id, ROUND(AVG(e.experience_years), 2) AS average_years
3
+FROM Project p
4
+LEFT JOIN Employee e ON p.employee_id = e.employee_id
5
+GROUP BY p.project_id;
0 commit comments