[SQL] The Report

μˆœλ™Β·2022λ…„ 5μ›” 17일
0

βœ… The Report


πŸ“ 문제

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 G.Grade < 8 THEN NULL
        ELSE S.Name
    END) AS Name,
    G.Grade,
    S.Marks
FROM Students AS S INNER JOIN Grades AS G
    ON S.Marks BETWEEN G.Min_Mark AND G.Max_Mark
ORDER BY G.Grade DESC, S.Name ASC;

πŸ’‘ Idea

Students ν…Œμ΄λΈ”κ³Ό Grades ν…Œμ΄λΈ”μ—λŠ” 곡톡 컬럼이 μ‘΄μž¬ν•˜μ§€ μ•ŠμœΌλ―€λ‘œ BTWEEN A AND Bλ₯Ό μ΄μš©ν•˜μ—¬ JOINν•œλ‹€.

κ·Έ 결과둜 ID, Name, Marks, Grade, Min_Mark, Max_Mark μˆœμ„œλ‘œ 합쳐진 ν…Œμ΄λΈ”μ΄ λ‚˜νƒ€λ‚œλ‹€.

μœ„ κ²°κ³Ό ν…Œμ΄λΈ”μ„ μ΄μš©ν•˜μ—¬ CASE ν•¨μˆ˜μ™€ ORDER BY절둜 쑰건을 μ²˜λ¦¬ν•˜λ©΄ μ‰½κ²Œ ν•΄κ²°λœλ‹€.


0개의 λŒ“κΈ€