일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- TRUNCATE
- PostgreSQL
- SQLite
- 다중 JOIN
- Round
- 파이썬
- Oracle
- 전처리
- not in
- airflow.cfg
- 데이터리안 웨비나
- GROUPBY
- MySQL
- matplotlib
- 프로그래머스
- pandas
- 데이터시각화
- 그로스해킹
- hackerrank
- airflow 설치
- seaborn
- solvesql
- 머신러닝
- join
- having
- SUM
- 데이터분석
- SQL
- 결측값
- Limit
Archives
- Today
- Total
Milky's note
[HackerRank](E) Average Population of Each Continent 본문
SQL/SQL 코딩 테스트-HackerRank
[HackerRank](E) Average Population of Each Continent
밀뿌 2022. 3. 25. 23:06
[문제]
Given the CITY and COUNTRY tables, query the names of all the continents (COUNTRY.Continent) and their respective average city populations (CITY.Population) rounded down to the nearest integer.
Note: CITY.CountryCode and COUNTRY.Code are matching key columns.
Input Format
The CITY and COUNTRY tables are described as follows:
[답]
- mysql
select COUNTRY.Continent, truncate(avg(CITY.Population),0)
from country
join city
on CITY.CountryCode = COUNTRY.Code
group by COUNTRY.Continent
대륙 별 인구 수 평균을 구하는 문제이다.
인구 수의 평균을 구하여서 버림을 해야하기 때문에 truncate를 사용하였고 정수만 표현하라고 해서 자리수는 0을 입력해주었다.
대륙 별로 인구 수를 구해야하기 때문에 대륙 별로 group by 를 해주어서 그룹으로 묶어주었다.
'SQL > SQL 코딩 테스트-HackerRank' 카테고리의 다른 글
[HackerRank](E) Draw The Triangle 1 (0) | 2022.03.26 |
---|---|
[HackerRank](M) The Report (0) | 2022.03.25 |
[HackerRank](E) African Cities (0) | 2022.03.25 |
[HackerRank](E) Population Census (0) | 2022.03.25 |
[HackerRank](E) Weather Observation Station 17 (0) | 2022.03.25 |
Comments