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 | 31 |
Tags
- MySQL
- 코드스테이츠
- 클라우드에서 도커 실행하기
- String.valueOf()
- 백준
- List.of
- 싱글톤패턴
- Spring MVC 동작원리
- Spring MVC 구성요소
- Spring Web MVC
- java
- 코드스테이츠 백엔드
- 재귀와반복문
- 구간합구하기
- 성능테스트툴
- 재귀함수
- 인텔리제이
- 코딩테스트
- 투포인터알고리즘
- 11659
- vm인스턴스생성
- 알고리즘
- Array.asList
- 스택
- 프로그래머스
- 자바
- 백준 11659
- OOP
- 버블정렬
- GCP
Archives
- Today
- Total
순간을 기록으로
[MySQL] African Cities | Join 본문
문제
- 모든 시티의 이름들을 조회하세요
-조건1: continent is 'africa'
-조건2: city.countrycode = country.code
풀이
select CITY.name
from CITY
join COUNTRY
on CITY.countryCode = COUNTRY.code
where COUNTRY.continent = 'Africa';
'Problem Solving' 카테고리의 다른 글
[MySQL] The Report (0) | 2022.04.06 |
---|---|
[MySQL] Average Population of Each Continent | Join (0) | 2022.04.06 |
[MySQL] Population Census | Join (0) | 2022.04.06 |
[MySQL] Weather Observation Station 17 (0) | 2022.04.06 |
[MySQL] Weather Observation Station 16 (0) | 2022.04.06 |
Comments