SQL/해커랭크 [MySQL] Higher Than 75 Marks - [문제] Higher Than 75 Marks | HackerRank 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 [문제 풀이] 우측에서 3가지 문자를 파악해서 정렬하자. RIGHT(컬럼,숫자) 해당 구절은 컬럼의 우측 순서만큼을 뽑아 주는 구절이다. ORDER BY와 조합을 해서 문제를 풀어보자. [코드] SELECT NAME FROM STUDENTS WHERE MARKS > 75 ORDER BY RIGHT(NAME,3) ASC, ID ASC 공유하기 게시글 관리 Yoon-1212 'SQL > 해커랭크' 카테고리의 다른 글 [MySQL] Average Population of Each Continent (0) 2022.10.12 [MySQL] Population Census (0) 2022.10.11 [MySQL] Weather Observation Station 12 (0) 2022.10.09 [MySQL] Weather Observation Station 11 (0) 2022.10.09 [MySQL] Weather Observation Station 10 (0) 2022.10.09 Contents 당신이 좋아할만한 콘텐츠 [MySQL] Average Population of Each Continent 2022.10.12 [MySQL] Population Census 2022.10.11 [MySQL] Weather Observation Station 12 2022.10.09 [MySQL] Weather Observation Station 11 2022.10.09 댓글 0 + 이전 댓글 더보기