일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Limit
- GROUPBY
- 파이썬
- seaborn
- 데이터리안 웨비나
- not in
- SQLite
- 데이터분석
- Oracle
- matplotlib
- 다중 JOIN
- having
- MySQL
- 결측값
- 프로그래머스
- 전처리
- mysql :=
- Round
- hackerrank
- PostgreSQL
- TRUNCATE
- pandas
- solvesql
- 그로스해킹
- 머신러닝
- 데이터시각화
- SQL
- SUM
- join
- airflow 설치
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