일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- numpy
- 배열나누기
- 파일저장하기
- SQL문제
- fancyindexing
- SQL
- 랜덤샘플링
- 해커랭크
- 넘파이
- Revising the Select Query I
- 배열붙이기
- reshape
- concat
- Python
- 배열분리하기
- 넘파이장점
- 배열쪼개기
- npy
- Revising the Select Query II
- CONCATENATE
- 배열추가
- 표본추출
- buit-in exception
- 배열형태변경
- 파이썬
- ndarray
- 논리배열
- 배열자르기
- 벡터연산
- 배열연산
- Today
- Total
목록SQL문제 (6)
기록하는 습관
Problem HackerRank > Prepare > SQL > Basic Select > Weather Observation Station 1 Query a list of CITY and STATE from the STATION table. The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude. Solution 더보기 SELECT DISTINCT CITY, STATE FROM STATION ;
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' ;
Problem HackerRank > Prepare > SQL > Basic Select > Japanese Cities' Attributes Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows: Solution 더보기 SELECT * FROM CITY WHERE 1=1 and COUNTRYCODE = 'JPN' ;
Problem HackerRank > Prepare > SQL > Basic Select > Select By ID Query all columns for a city in CITY with the ID 1661. The CITY table is described as follows: Solution 더보기 SELECT * FROM CITY WHERE 1=1 and ID = 1661 ;
Problem HackerRank > Prepare > SQL > Basic Select > Select All Query all columns (attributes) for every row in the CITY table. The CITY table is described as follows: Solution 더보기 SELECT * FROM CITY ;
Problem HackerRank > Prepare > SQL > Basic Select > Revising the Select Query II Query the NAME field for all American cities in the CITY table with populations larger than 120000. The CountryCode for America is USA. The CITY table is described as follows: Solution 더보기 SELECT NAME FROM CITY WHERE 1=1 and COUNTRYCODE = 'USA' and POPULATION > 120000