관리 메뉴

오늘도 배운다

Higher Than 75 Marks / HackerRank, SQL, MySQL 본문

코딩테스트연습(SQL)

Higher Than 75 Marks / HackerRank, SQL, MySQL

LearnerToRunner 2022. 12. 1. 19:39

문제

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.

[Table] STUDENTS

 

제출답안(MySQL)

SELECT name FROM students
WHERE marks >75
ORDER BY RIGHT(name, 3), ID

 

 

문제 바로가기(MySQL) 

 

728x90
Comments