일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
Tags
- SQLite
- airflow 설치
- 결측값
- matplotlib
- SUM
- seaborn
- pandas
- mysql :=
- solvesql
- 전처리
- Oracle
- GROUPBY
- SQL
- 다중 JOIN
- 파이썬
- 그로스해킹
- MySQL
- Round
- TRUNCATE
- having
- PostgreSQL
- hackerrank
- 데이터분석
- join
- 프로그래머스
- 데이터리안 웨비나
- Limit
- 머신러닝
- not in
- 데이터시각화
Archives
- Today
- Total
Milky's note
[HackerRank](E) Higher Than 75 Marks 본문
https://www.hackerrank.com/challenges/more-than-75-marks/problem?isFullScreen=true
[문제]
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.
Input Format
The STUDENTS table is described as follows:
The Name column only contains uppercase (A-Z) and lowercase (a-z) letters.
[답]
- mysql
select name from students
where marks > 75
order by right(name,3), id;
marks가 75점이 넘는 학생들의 이름만 조회하는 쿼리이다.
이 때, 끝에서 3번째있는 문자열로 오름 차순 정렬을 하고, 만약 이게 같으면 id로 오름차순 정렬을 하는 쿼리이므로 위와 같이 작성하였다.
'SQL > SQL 코딩 테스트-HackerRank' 카테고리의 다른 글
[HackerRank](E) Employee Salaries (0) | 2022.03.18 |
---|---|
[HackerRank](E) Employee Names (0) | 2022.03.18 |
[HackerRank](E) Weather Observation Station 12 (0) | 2022.03.16 |
[HackerRank](E) Weather Observation Station 11 (0) | 2022.03.16 |
[HackerRank](E) Weather Observation Station 10 (0) | 2022.03.16 |
Comments