Given belоw аre the schemаs оf twо SQL tаbles students and grades: | student_id | student_name | major | | student_id | course | grade | What does the following SQL query produce? SELECT student_name, AVG(grade) FROM grades INNER JOIN students on grades.student_id = students.student_id GROUP BY student_name;