Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- CONCATENATE
- 배열자르기
- 랜덤샘플링
- npy
- Revising the Select Query I
- 배열분리하기
- 배열쪼개기
- 해커랭크
- numpy
- 벡터연산
- SQL
- 논리배열
- buit-in exception
- 파일저장하기
- concat
- fancyindexing
- 넘파이장점
- Revising the Select Query II
- ndarray
- 배열붙이기
- 배열형태변경
- reshape
- SQL문제
- 넘파이
- 파이썬
- Python
- 표본추출
- 배열연산
- 배열추가
- 배열나누기
Archives
- Today
- Total
기록하는 습관
[SQL] (해커랭크) Japanese Cities' Names 본문
Problem
HackerRank > Prepare > SQL > Basic Select > Japanese Cities' Names
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:
Solution
더보기
SELECT NAME
FROM CITY
WHERE 1=1
and COUNTRYCODE = 'JPN'
;
'SQL' 카테고리의 다른 글
[SQL] (해커랭크) Weather Observation Station 1 (0) | 2023.08.19 |
---|---|
[SQL] (해커랭크) Japanese Cities' Attributes (0) | 2023.08.17 |
[SQL] (해커랭크) Select By ID (0) | 2023.08.15 |
[SQL] (해커랭크) Select All (0) | 2023.08.14 |
[SQL] (해커랭크) Revising the Select Query II (0) | 2023.08.13 |