일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SQL
- 딥러닝
- 신경망
- algorithm
- Sigmoid
- stak
- Word2vec
- skip-gram
- DeepLearning
- boj
- FullyConnectedLayer
- que
- Heap
- Numpy
- CBOW
- 자연어처리
- sort
- backward
- kakao
- 파이썬
- 프로그래머스
- hash
- dl
- MySQL
- select
- Stack
- affine
- Python
- PPMI
- Programmers
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