-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathThe Report.sql
More file actions
30 lines (27 loc) · 1.06 KB
/
The Report.sql
File metadata and controls
30 lines (27 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* 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. */
--
-- Author: Pavith Bambaravanage
-- URL: https://github.com/Pavith19
--
SELECT
CASE
WHEN g.grade < 8 THEN 'NULL'
ELSE s.name
END AS name,
g.grade,
s.marks
FROM students s
JOIN grades g
ON s.marks BETWEEN g.min_mark AND g.max_mark
ORDER BY
g.grade DESC,
CASE
WHEN g.grade < 8 THEN s.marks
ELSE s.name
END ASC;