일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Oracle
- having
- airflow 설치
- hackerrank
- 데이터분석
- GROUPBY
- solvesql
- PostgreSQL
- TRUNCATE
- SQL
- Round
- join
- 그로스해킹
- 머신러닝
- not in
- 데이터리안 웨비나
- 데이터시각화
- 결측값
- Limit
- 파이썬
- 다중 JOIN
- airflow.cfg
- MySQL
- seaborn
- SQLite
- matplotlib
- pandas
- SUM
- 프로그래머스
- 전처리
- Today
- Total
목록SQL (51)
Milky's note
https://www.hackerrank.com/challenges/average-population/problem?isFullScreen=true Average Population | HackerRank Query the average population of all cities, rounded down to the nearest integer. www.hackerrank.com [문제] Query the average population for all cities in CITY, rounded down to the nearest integer. Input Format The CITY table is described as follows: [답] -mysql select round(avg(populat..
https://www.hackerrank.com/challenges/revising-aggregations-the-average-function/problem?isFullScreen=true Revising Aggregations - Averages | HackerRank Query the average population of all cities in the District of California. www.hackerrank.com [문제] Query the average population of all cities in CITY where District is California. Input Format The CITY table is described as follows: [답] -mysql se..
https://www.hackerrank.com/challenges/revising-aggregations-sum/problem?isFullScreen=true Revising Aggregations - The Sum Function | HackerRank Query the total population of all cities for in the District of California. www.hackerrank.com [문제] Query the total population of all cities in CITY where District is California. Input Format The CITY table is described as follows: [답] - mysql select sum..
https://www.hackerrank.com/challenges/revising-aggregations-the-count-function/problem?isFullScreen=true Revising Aggregations - The Count Function | HackerRank Query the number of cities having populations larger than 100000. www.hackerrank.com [문제] Query a count of the number of cities in CITY having a Population larger than 100,000. Input Format The CITY table is described as follows: [답] -my..