문제
Query the Name of any student in STUDENTS who scored higher than 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 > . 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;
'algorithm' 카테고리의 다른 글
[HackerRank] MySQL - Employee Names (0) | 2022.09.28 |
---|---|
[programmers] MySQL - Lv.3 헤비 유저가 소유한 장소 (0) | 2022.09.28 |
[programmers] MySQL - Lv.3 없어진 기록 찾기 (join) (0) | 2022.09.27 |
[HackerRank] MySQL - Weather Observation Station 12 (0) | 2022.09.26 |
[programmers] MySQL - Lv.3 있었는데요 없었습니다 (join) (0) | 2022.09.26 |