일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SQLite
- 프로그래머스
- SUM
- seaborn
- MySQL
- 결측값
- airflow 설치
- 전처리
- 파이썬
- 머신러닝
- Oracle
- not in
- hackerrank
- matplotlib
- 데이터리안 웨비나
- pandas
- having
- TRUNCATE
- join
- 다중 JOIN
- Round
- 데이터시각화
- GROUPBY
- SQL
- 데이터분석
- 그로스해킹
- solvesql
- airflow.cfg
- PostgreSQL
- Limit
Archives
- Today
- Total
Milky's note
[HackerRank](E) Japanese Cities' Names 본문
https://www.hackerrank.com/challenges/japanese-cities-name/problem?isFullScreen=true
Japanese Cities' Names | HackerRank
In this challenge, you will query a list of all the Japanese cities' names.
www.hackerrank.com
[문제]
Query the names of all the Japanese cities in the CITY table. The COUNTRYCODE for Japan is JPN.
The CITY table is described as follows:
[답]
- oracle
select name from city
where countrycode = 'JPN';
'SQL > SQL 코딩 테스트-HackerRank' 카테고리의 다른 글
[HackerRank](E) Weather Observation Station 3 (0) | 2022.03.16 |
---|---|
[HackerRank](E) Weather Observation Station 1 (0) | 2022.03.16 |
[HackerRank](E) Japanese Cities' Attributes (0) | 2022.03.16 |
[HackerRank](E) Select By ID (0) | 2022.03.16 |
[HackerRank](E) Select All (0) | 2022.03.16 |
Comments