Hi Hugo,
Thanks for the help.
I looked a bit into the GROUP BY clause and I would say this:
SELECT StudentSubiect.StudentID
AVG (Grade)
FROM StudentSubiect
INNER JOIN Student
on
StudentSubiect.StudentID=Student.StudentID
GROUP BY Name, Surname DESC
I am...