일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Round
- SUM
- 머신러닝
- having
- 데이터리안 웨비나
- join
- 다중 JOIN
- SQL
- MySQL
- 그로스해킹
- PostgreSQL
- GROUPBY
- 데이터분석
- pandas
- hackerrank
- Oracle
- SQLite
- seaborn
- 전처리
- Limit
- solvesql
- 파이썬
- TRUNCATE
- not in
- matplotlib
- 데이터시각화
- airflow 설치
- 결측값
- 프로그래머스
- mysql :=
Archives
- Today
- Total
Milky's note
[HackerRank](E) Population Census 본문
https://www.hackerrank.com/challenges/asian-population/problem?isFullScreen=true
[문제]
Given the CITY and COUNTRY tables, query the sum of the populations of all cities where the CONTINENT is 'Asia'.
Note: CITY.CountryCode and COUNTRY.Code are matching key columns.
Input Format
The CITY and COUNTRY tables are described as follows:
[답]
- mysql
select sum(city.population) from city
join country
on CITY.CountryCode = COUNTRY.Code
where country.CONTINENT = 'Asia'
두 테이블을 join하는 문제이다.
구하려는 컬럼은 city 테이블에 조건의 컬럼은 country 테이블에 있으므로 두 테이블의 컬럼이 모두 필요한 full outer join이다.
full outer는 생략이 가능하고 join만 해주어도 full outer join이 된다.
'SQL > SQL 코딩 테스트-HackerRank' 카테고리의 다른 글
[HackerRank](E) Average Population of Each Continent (0) | 2022.03.25 |
---|---|
[HackerRank](E) African Cities (0) | 2022.03.25 |
[HackerRank](E) Weather Observation Station 17 (0) | 2022.03.25 |
[HackerRank](E) Weather Observation Station 16 (0) | 2022.03.25 |
[HackerRank](E) Weather Observation Station 15 (0) | 2022.03.25 |
Comments