[HackerRank] Higher Than 75 Marks
2021. 1. 24. 16:27ㆍ데이터베이스/SQL
728x90
반응형
Query the Name of any student in STUDENTS who scored higher than 75 Marks. Order your output by the last three characters of each name. If two or more students both have names ending in the same last three characters (i.e.: Bobby, Robby, etc.), secondary sort them by ascending ID.
Input Format

The STUDENTS table is described as follows:
The Name column only contains uppercase (A-Z) and lowercase (a-z) letters.
Sample Input

Sample Output
Ashley
Julia
Belvet
Explanation
Only Ashley, Julia, and Belvet have Marks > 75 . If you look at the last three characters of each of their names, there are no duplicates and 'ley' < 'lia' < 'vet'.
SELECT NAME FROM STUDENTS
WHERE Marks > 75
ORDER BY RIGHT(NAME,3), ID;
광고
광고
'데이터베이스 > SQL' 카테고리의 다른 글
[HackerRank] Revising Aggregations - The Count Function (0) | 2021.01.25 |
---|---|
[HackerRank] Employee Salaries (0) | 2021.01.25 |
[HackerRank] Weather Observation Station 12 (0) | 2021.01.24 |
[HackerRank] Weather Observation Station 11 (0) | 2021.01.24 |
[HackerRank] Weather Observation Station 10 (0) | 2021.01.24 |