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