https://www.hackerrank.com/challenges/more-than-75-marks/problem?isFullScreen=true
Higher Than 75 Marks | HackerRank
Query the names of students scoring higher than 75 Marks. Sort the output by the LAST three characters of each name.
www.hackerrank.com
문제
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.
정답
SELECT Name
FROM STUDENTS
WHERE Marks > 75
ORDER BY RIGHT(Name,3), ID
해설
RIGHT(Name, 3)으로 Name 컬럼의 오른쪽 3글자를 기준으로 정렬해준 다음 만약에 글자가 같을 경우에는 추가로 ID컬럼을 기준으로 정렬해준다.
Type of Triangle(HackerRank) (0) | 2022.07.18 |
---|---|
Top Earners(HackerRank) (0) | 2022.07.18 |
Weather Observation Station 15(HackerRank) (0) | 2022.07.18 |
Weather Observation Station 12(HackerRank) (0) | 2022.07.18 |
Weather Observation Station 6(HackerRank) (0) | 2022.07.18 |
댓글 영역