Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- TEAM EDA
- 튜토리얼
- pytorch
- 파이썬
- 나는 리뷰어다
- Semantic Segmentation
- Python
- 스택
- eda
- 협업필터링
- 입문
- 추천시스템
- Machine Learning Advanced
- 한빛미디어
- DilatedNet
- 프로그래머스
- MySQL
- DFS
- 알고리즘
- 엘리스
- 3줄 논문
- Recsys-KR
- TEAM-EDA
- 나는리뷰어다
- Segmentation
- 코딩테스트
- Object Detection
- 큐
- Image Segmentation
- hackerrank
Archives
- Today
- Total
TEAM EDA
[HackerRank] Basic Join : 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:
풀이
SELECT C.NAME
FROM CITY AS C
JOIN COUNTRY AS O ON C.COUNTRYCODE = O.CODE
WHERE O.CONTINENT = 'Africa';
'EDA Study > SQL' 카테고리의 다른 글
[HackerRank] Basic Join : The Report (2) | 2021.02.08 |
---|---|
[HackerRank] Basic Join : Average Population of Each Continent (0) | 2021.02.08 |
[HackerRank] Basic Join : Asian Population (0) | 2021.02.08 |
[HackerRank] Basic Select : Employee Salaries (0) | 2021.02.07 |
[HackerRank] Basic Select : Employee Names (0) | 2021.02.07 |