STUDENT_ID | NUMBER (12) | |
SEMESTER_END | DATE | |
GPA | NUMBER (4, 3) |
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
More Oracle SQL 9i MCQ Questions