IT/[SQL] Basic
Higher Than 75 Marks
carpe08
2021. 8. 11. 01:08
320x100
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 SUBSTR(NAME,-3), ID ASC;
320x100
320x100