Anusha Murali

Logo

Please see github.com/anusha-murali for all of my repositories.

View GitHub Profile

43. The Report: Solution


You are given two tables: STUDENTS and GRADES. STUDENTS contains three columns ID, Name and Marks.

The STUDENTS table is described as follows:

36_1

GRADES contains the following data:

43_2

Ketty gives Eve a task to generate a report containing three columns: Name, Grade and Mark. Ketty doesn’t want the NAMES of those students who received a grade lower than 8. The report must be in descending order by grade – i.e. higher grades are entered first. If there is more than one student with the same grade (8-10) assigned to them, order those particular students by their name alphabetically. Finally, if the grade is lower than 8, use “NULL” as their name and list them by their grades in descending order. If there is more than one student with the same grade (1-7) assigned to them, order those particular students by their marks in ascending order.

Write a query to help Eve.

Sample Input

43_3

Sample Output

Maria 10 99
Jane 9 81
Julia 9 88
Scarlet 8 78
NULL 7 63
NULL 7 68

Note

Print “NULL” as the name if the grade is less than 8.

Explanation

Consider the following table with the grades assigned to the students:

43_4

So, the following students got 8, 9 or 10 grades:

solution_image5

In the following, we use Oracle’s DECODE() statement. As specified below, for GRADE values 8, 9, and 10, the DECODE() statement returns NAME. Otherwise, it returns NULL.

SELECT DECODE(GRADE, 8, NAME, 9, NAME, 10, NAME), GRADE, MARKS
FROM STUDENTS, GRADES
WHERE MARKS >= MIN_MARK AND MARKS <= MAX_MARK
ORDER BY GRADE DESC, NAME, MARKS;

We can also use a CASE statement in the SELECT list as follows:

SELECT CASE 
         WHEN GRADE > 7 THEN NAME
         ELSE NULL
       END, GRADE, MARKS
FROM STUDENTS, GRADES
WHERE MARKS >= MIN_MARK AND MARKS <= MAX_MARK
ORDER BY GRADE DESC, NAME, MARKS;

Back to problems


anusha-murali.github.io