일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- Numpy
- Word2vec
- que
- MySQL
- kakao
- 딥러닝
- 파이썬
- Programmers
- 신경망
- affine
- stak
- skip-gram
- FullyConnectedLayer
- Stack
- Heap
- hash
- 자연어처리
- DeepLearning
- select
- Python
- 프로그래머스
- Sigmoid
- SQL
- sort
- algorithm
- dl
- PPMI
- CBOW
- boj
- backward
- Today
- Total
혜온의 이것저것
[HackerRank] Higher Than 75 Marks (MySQL) 본문
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 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:
![](https://blog.kakaocdn.net/dn/HYML6/btrJfZjRCJf/L8j4wUJ79e31gkRwGZ8JF0/img.png)
The Name column only contains uppercase (A-Z) and lowercase (a-z) letters.
Sample Input
![](https://blog.kakaocdn.net/dn/ba2gdf/btrI8R7DRZG/KgDa6mcfyCe2jdkKgFlQik/img.png)
Sample Output
Ashley
Julia
Belvet
Explanation
Only Ashley, Julia, and Belvet have Marks > 75. 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
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Employee Salaries (MySQL) (0) | 2022.08.09 |
---|---|
[HackerRank] Employee Names (MySQL) (0) | 2022.08.09 |
[HackerRank] Weather Observation Station 12 (MySQL) (0) | 2022.08.09 |
[HackerRank] Weather Observation Station 11 (MySQL) (0) | 2022.08.09 |
[HackerRank] Weather Observation Station 10 (MySQL) (0) | 2022.08.08 |