MCQs > IT & Programming > Microsoft SQL Server > The STUDENT_GRADES table has these columns: STUDENT_ID INT SEMESTER_END DATETIME GPA FLOAT Which of the following statements finds the highest Grade Point Average (GPA) per semester?

Microsoft SQL Server MCQs

The STUDENT_GRADES table has these columns:

STUDENT_ID        INT
SEMESTER_END        DATETIME
GPA                FLOAT


Which of the following statements finds the highest Grade Point Average (GPA) per semester?


Answer

Correct Answer: SELECT MAX(gpa) FROM student_grades WHERE gpa IS NOT NULL GROUP BY semester_end

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Microsoft SQL Server Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Microsoft SQL Server Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it