일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- select
- 딥러닝
- CBOW
- 프로그래머스
- Sigmoid
- Heap
- Numpy
- PPMI
- Programmers
- MySQL
- dl
- backward
- 파이썬
- SQL
- Python
- stak
- affine
- 자연어처리
- DeepLearning
- hash
- Stack
- que
- FullyConnectedLayer
- boj
- skip-gram
- algorithm
- 신경망
- kakao
- Word2vec
- sort
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Select By ID (MySQL) 본문
https://www.hackerrank.com/challenges/select-by-id/problem?isFullScreen=true
Select By ID | HackerRank
Query the details of the city with ID 1661.
www.hackerrank.com
문제
Query all columns for a city in CITY with the ID 1661.
The CITY table is described as follows:

풀이
select * from city
where id = 1661
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Japanese Cities' Names (MySQL) (0) | 2022.08.03 |
---|---|
[HackerRank] Japanese Cities' Attributes (MySQL) (0) | 2022.08.03 |
[HackerRank] Select All (MySQL) (0) | 2022.08.03 |
[HackerRank] Revising the Select Query II (MySQL) (0) | 2022.08.03 |
[HackerRank] Revising the Select Query I (MySQL) (0) | 2022.08.03 |
Comments