The STUDENT_GRADES table has these columns:
STUDENT_ID INT
SEMESTER_END DATE
GPA FLOAT
Which of the following statements finds the highest Grade Point Average (GPA) per semester?
Correct Answer: SELECT MAX(GPA) FROM STUDENT_GRADES GROUP BY SEMESTER_END
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More MySQL MCQ Questions