Write an SQL query that reports the average experience years of all the employees for each project, rounded to 2 digits.
Return the result table in any order.
The query result format is in the following example.
Lv2
수준에서 흔히 접하던 문제SELECT P.project_id, ROUND(AVG(E.experience_years), 2) as average_years
FROM Project as P JOIN Employee as E ON P.employee_id = E.employee_id
GROUP BY 1