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