* ProblemWrite 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 ordeExplanation: The average experience years for the first project is (3 + 2 + 1) / 3 = 2.00 and for the second project is (3 + 2) / 2 = 2.50 * Solution # Write your MySQL query statement below select a.project_id project_id, ..