You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT STUDENTS.NAME, GRADES.GRADE, STUDENTS.MARKS FROM STUDENTS, GRADES WHERE STUDENTS.MARKS BETWEEN GRADES.MIN_MARK AND GRADES.MAX_MARK AND GRADES.GRADE >= 8 ORDER BY GRADES.GRADE DESC, STUDENTS.NAME ASC;
SELECT "NULL", GRADES.GRADE, STUDENTS.MARKS FROM STUDENTS, GRADES WHERE STUDENTS.MARKS BETWEEN GRADES.MIN_MARK AND GRADES.MAX_MARK AND GRADES.GRADE < 8 ORDER BY GRADES.GRADE DESC, STUDENTS.MARKS ASC;