Project managers at LinkedIn want to analyze the seniority level of different project teams to ensure a balanced mix of junior and senior talent.
Write an SQL query that reports the average experience years of all the employees for each project, rounded to 2 digits.
| project_id(INTEGER) | employee_id(INTEGER) |
|---|---|
| 1 | 1 |
| 1 | 2 |
| 1 | 3 |
| 2 | 1 |
| 2 | 4 |
| employee_id(INTEGER) | name(VARCHAR) | experience_years(INTEGER) |
|---|---|---|
| 1 | Khaled | 3 |
| 2 | Ali | 2 |
| 3 | John | 1 |
| 4 | Doe | 2 |
| project_id(INTEGER) | average_years(FLOAT) |
|---|---|
| 1 | 2 |
| 2 | 2.5 |