일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 데이터분석
- seaborn
- SUM
- 데이터리안 웨비나
- GROUPBY
- matplotlib
- 결측값
- 머신러닝
- Limit
- airflow 설치
- not in
- 다중 JOIN
- join
- mysql :=
- SQL
- hackerrank
- 파이썬
- PostgreSQL
- SQLite
- Oracle
- 전처리
- MySQL
- 그로스해킹
- Round
- TRUNCATE
- 데이터시각화
- 프로그래머스
- having
- pandas
- solvesql
Archives
- Today
- Total
Milky's note
[HackerRank](E) African Cities 본문
[문제]
Given the CITY and COUNTRY tables, query the names of all cities where the CONTINENT is 'Africa'.
Note: CITY.CountryCode and COUNTRY.Code are matching key columns.
Input Format
The CITY and COUNTRY tables are described as follows:
[답]
- mysql
select city.name from city
join country
on CITY.CountryCode = COUNTRY.Code
where country.CONTINENT = 'Africa'
두 테이블을 join하는 문제이다.
조건 컬럼에서 country 테이블이 사용되고 조회 컬럼에서 city 테이블이 사용되므로 full join을 해준다.
'SQL > SQL 코딩 테스트-HackerRank' 카테고리의 다른 글
[HackerRank](M) The Report (0) | 2022.03.25 |
---|---|
[HackerRank](E) Average Population of Each Continent (0) | 2022.03.25 |
[HackerRank](E) Population Census (0) | 2022.03.25 |
[HackerRank](E) Weather Observation Station 17 (0) | 2022.03.25 |
[HackerRank](E) Weather Observation Station 16 (0) | 2022.03.25 |
Comments