일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 배열쪼개기
- 논리배열
- 배열붙이기
- 파일저장하기
- 배열연산
- 넘파이
- fancyindexing
- 해커랭크
- 배열나누기
- npy
- SQL문제
- 표본추출
- 랜덤샘플링
- reshape
- SQL
- 파이썬
- 배열형태변경
- ndarray
- 넘파이장점
- Revising the Select Query II
- 배열추가
- 배열자르기
- concat
- 배열분리하기
- Revising the Select Query I
- 벡터연산
- buit-in exception
- CONCATENATE
- Python
- numpy
- Today
- Total
목록SQL (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 ;