The Student_Grades table has these columns: STUDENT_ID NUMBER(12) SEMESTER_END DATE GPA NUMBER(4,3) The registrar has asked for a report on the average grade point average (GPA), sorted from the highest grade point average to each semester, starting from the earliest date. Which statement will accomplish this? A. SELECT Student_id, semester_end, gpa from student_grades order by semester_end DESC, gpa DESC; B. SELECT Student_id, semester_end, gpa from student_grades order by semester_end, gpa ASC order by semester_end DESC, gpa DESC; C. SELECT Student_id, semester_end, gpa from student_grades order by semester_end DESC, gpa ASC; D. SELECT Student_id, semester_end, gpa from student_grades order by semester_end ASC, gpa ASC; E. SELECT Student_id, semester_end, gpa from student_grades order by semester_end DESC, gpa ASC;
Reveal answer
Fill a bubble to check yourself
Keep practicing — related questions
- The STUDENT_GRADES table has the following columns: STUDENT_ID NUMBER (12) SEMESTER_END DATE GPA NUMBER (4,...
- The STUDENT_GRADES table has the following columns: STUDENT_ID NUMBER (12) SEMESTER_END DATE GPA NUMBER (4,...
- The STUDENT_GRADES table has the following columns:STUDENT_ID NUMBER (12)SEMESTER_END DATEGPA NUMBER (4, 3)...
- Examine the structure of the given STUDENTS table. STUDENT_ID NUMBER NOT NULL, Primary Key STUDENT_NAME VAR...
- Examine the description of the MARKS table: STD_ID NUMBER(4) STUDENT_NAME VARCHAR2(30) SUBJ1 NUMBER(3) SUBJ...
- Write a query to choose all the students who got the highest marks in the exam.
- Write a query to choose all the courses in which the least marks obtained is greater than the highest marks...
- Consider the set of relations shown below and the SQL query that follows. Students: (Roll_number, Name, Dat...