일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- sort
- Stack
- 신경망
- FullyConnectedLayer
- Programmers
- MySQL
- boj
- select
- backward
- PPMI
- 프로그래머스
- CBOW
- stak
- Heap
- Python
- 파이썬
- Sigmoid
- dl
- SQL
- affine
- DeepLearning
- skip-gram
- hash
- 자연어처리
- que
- kakao
- algorithm
- 딥러닝
- Word2vec
- Numpy
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Japanese Cities' Names (MySQL) 본문
https://www.hackerrank.com/challenges/japanese-cities-name/problem?isFullScreen=true
문제
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:
풀이
select name from city where countrycode = 'JPN'
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Weather Observation Station 3 (MySQL) (0) | 2022.08.03 |
---|---|
[HackerRank] Weather Observation Station 1 (MySQL) (0) | 2022.08.03 |
[HackerRank] Japanese Cities' Attributes (MySQL) (0) | 2022.08.03 |
[HackerRank] Select By ID (MySQL) (0) | 2022.08.03 |
[HackerRank] Select All (MySQL) (0) | 2022.08.03 |
Comments