일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 신경망
- stak
- FullyConnectedLayer
- 딥러닝
- sort
- skip-gram
- select
- algorithm
- Heap
- Stack
- SQL
- CBOW
- Sigmoid
- Python
- affine
- backward
- 프로그래머스
- Word2vec
- Numpy
- boj
- MySQL
- Programmers
- kakao
- que
- 파이썬
- 자연어처리
- dl
- DeepLearning
- hash
- PPMI
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Japanese Cities' Names (MySQL) 본문
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:
풀이
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