티스토리 뷰
You are given two tables: Students and Grades. Students contains three columns ID, Name and Marks.
Grades contains the following data:
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
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:
So, the following students got 8, 9 or 10 grades:
- Maria (grade 10)
- Jane (grade 9)
- Julia (grade 9)
- Scarlet (grade 8)
SELECT CASE WHEN B.GRADE >= 8 THEN A.NAME ELSE NULL END
, B.GRADE
, A.MARKS
FROM STUDENTS A
JOIN GRADES B
ON A.MARKS BETWEEN B.MIN_MARK AND B.MAX_MARK
ORDER BY B.GRADE DESC
, CASE WHEN B.GRADE >=8 THEN A.NAME ELSE NULL END
, CASE WHEN B.GRADE < 8 THEN A.MARKS ELSE NULL END
/*
SELECT IF(GRADE < 8, NULL, NAME), GRADE, MARKS
FROM STUDENTS JOIN GRADES
WHERE MARKS BETWEEN MIN_MARK AND MAX_MARK
ORDER BY GRADE DESC, NAME
*/
11/15일 2차풀이 - 8분
'Programming > MySQL' 카테고리의 다른 글
[MySQL/Hackerrank] Ollivander's Inventory (0) | 2021.11.03 |
---|---|
[MySQL/Hackerrank] Top Competitors (0) | 2021.11.03 |
[MySQL/Hackerrank] Population Census, African Cities, Average Population of Each Continent (0) | 2021.11.03 |
[MySQL/Hackerrank] Weather Observation Station 2~20 (0) | 2021.11.03 |
[MySQL/Hackerrank] Revising Aggregations (0) | 2021.11.03 |
- Total
- Today
- Yesterday
- DATABASE
- SQL Server
- HK이노엔
- 넷플릭스
- list
- 대원화성
- 넥스트BT
- MSSQL
- 분석탭
- 몰누피라비르
- string
- hackerrank
- 리비안
- Weather Observation Station
- Tableau
- 경구치료제
- python3
- tensorflow
- insert
- 코로나19
- mysql
- 동국알앤에스
- TSQL
- python
- 미중무역전쟁
- 에코캡
- MS SQL Server
- 매매일지
- 테슬라
- 해커랭크
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |