일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MySQL
- TRUNCATE
- hackerrank
- Limit
- PostgreSQL
- GROUPBY
- airflow 설치
- pandas
- seaborn
- matplotlib
- SQLite
- 머신러닝
- 다중 JOIN
- 데이터리안 웨비나
- solvesql
- having
- 데이터분석
- SQL
- 결측값
- 데이터시각화
- Oracle
- join
- SUM
- airflow.cfg
- 그로스해킹
- not in
- Round
- 파이썬
- 프로그래머스
- 전처리
- Today
- Total
목록분류 전체보기 (128)
Milky's note
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/HQRjs/btrxgFRisMw/KKl0PW6RLIuXSVtTFEcK0k/img.png)
https://www.hackerrank.com/challenges/the-blunder/problem?isFullScreen=true The Blunder | HackerRank Query the amount of error in Sam's result, rounded up to the next integer. www.hackerrank.com [문제] Samantha was tasked with calculating the average monthly salaries for all employees in the EMPLOYEES table, but did not realize her keyboard's 0 key was broken until after completing the calculation..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/b6no4S/btrxdOBF9o6/POUvhWNOYXzNyAxRpC30zk/img.jpg)
https://www.hackerrank.com/challenges/population-density-difference/problem?isFullScreen=true Population Density Difference | HackerRank Query the difference between the maximum and minimum city populations in CITY. www.hackerrank.com [문제] Query the difference between the maximum and minimum populations in CITY. Input Format The CITY table is described as follows: [답] -mysql select max(populatio..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/dsHNE3/btrxgFKvKtD/fpyOC2dwyuX1fcrqZs1MbK/img.jpg)
https://www.hackerrank.com/challenges/japan-population/problem?isFullScreen=true Japan Population | HackerRank Query to the sum of the populations of all Japanese cities in CITY. www.hackerrank.com [문제] Query the sum of the populations for all Japanese cities in CITY. The COUNTRYCODE for Japan is JPN. Input Format The CITY table is described as follows: [답] -mysql select sum(population) from cit..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/GlLdH/btrxgwzRXkk/Jj6NkvBQbo1ggxNbbpNOy1/img.jpg)
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..