일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 파이썬
- SUM
- airflow.cfg
- Limit
- not in
- PostgreSQL
- hackerrank
- pandas
- 다중 JOIN
- 그로스해킹
- 데이터분석
- 전처리
- Round
- GROUPBY
- TRUNCATE
- 데이터리안 웨비나
- 프로그래머스
- Oracle
- 머신러닝
- 데이터시각화
- join
- airflow 설치
- SQL
- seaborn
- matplotlib
- having
- solvesql
- 결측값
- SQLite
- MySQL
- Today
- Total
목록hackerrank (52)
Milky's note
https://www.hackerrank.com/challenges/select-by-id/problem?isFullScreen=true Select By ID | HackerRank Query the details of the city with ID 1661. www.hackerrank.com [문제] Query all columns for a city in CITY with the ID 1661. The CITY table is described as follows: [답] - oracle select * from city where ID = '1661';
https://www.hackerrank.com/challenges/select-all-sql/problem?isFullScreen=true Select All | HackerRank Query all columns for every row in a table. www.hackerrank.com [문제] Query all columns (attributes) for every row in the CITY table. The CITY table is described as follows: [답] - oracle select * from city;
https://www.hackerrank.com/challenges/revising-the-select-query-2/problem?isFullScreen=true Revising the Select Query II | HackerRank Query the city names for all American cities with populations larger than 120,000. www.hackerrank.com [문제] 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 des..
https://www.hackerrank.com/challenges/revising-the-select-query/problem?isFullScreen=true Revising the Select Query I | HackerRank Query the data for all American cities with populations larger than 100,000. www.hackerrank.com [문제] 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 fo..