Data/HackerRank

HackerRank - The Report

corycory 2022. 3. 3. 19:04
728x90
반응형

https://www.hackerrank.com/challenges/the-report/problem?isFullScreen=true

 

The Report | HackerRank

Write a query to generate a report containing three columns: Name, Grade and Mark.

www.hackerrank.com

 

문제

 

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

 

 

풀이

 

/*
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
*/

select
    t.new_name
    , t.grade
    , t.marks
from
(
    select s.id, s.name, s.marks, g.grade
    , case when g.grade < 8 then 'NULL' 
    else s.name end as new_name
    from students s, grades g
    where s.marks between g.min_mark and g.max_mark
) t
order by t.grade desc, t.new_name
반응형

'Data > HackerRank' 카테고리의 다른 글

HackerRank - Occupations  (0) 2022.03.03
HackerRank - Challenges  (0) 2022.03.02
HackerRank - Weather Observation Station 20  (0) 2022.03.02
HackerRank - Binary Tree Nodes  (0) 2022.03.02
HackerRank - The PADS  (0) 2022.03.01