일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- reshape
- 넘파이장점
- 표본추출
- Revising the Select Query II
- 배열붙이기
- 파이썬
- 벡터연산
- npy
- 넘파이
- CONCATENATE
- 해커랭크
- 배열나누기
- 파일저장하기
- SQL
- 배열형태변경
- 배열분리하기
- 배열추가
- 논리배열
- Revising the Select Query I
- buit-in exception
- Python
- 배열자르기
- fancyindexing
- ndarray
- 배열연산
- 배열쪼개기
- numpy
- SQL문제
- concat
- 랜덤샘플링
- Today
- Total
목록해커랭크 (7)
기록하는 습관
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
Problem HackerRank > Prepare > SQL > Basic Select > Revising the Select Query I Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA. The CITY table is described as follows: Solution 더보기 SELECT * FROM CITY WHERE 1=1 and COUNTRYCODE = 'USA' and POPULATION > 100000 ;