일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 데이터시각화
- 전처리
- mysql :=
- seaborn
- pandas
- 다중 JOIN
- hackerrank
- having
- 결측값
- MySQL
- not in
- Oracle
- 그로스해킹
- GROUPBY
- 파이썬
- PostgreSQL
- join
- 데이터분석
- 프로그래머스
- 데이터리안 웨비나
- Round
- SQL
- Limit
- 머신러닝
- airflow 설치
- TRUNCATE
- solvesql
- matplotlib
- SQLite
- SUM
- Today
- Total
목록MySQL (43)
Milky's note
https://www.hackerrank.com/challenges/weather-observation-station-2/problem?isFullScreen=true Weather Observation Station 2 | HackerRank Write a query to print the sum of LAT_N and the sum of LONG_W separated by space, rounded to 2 decimal places. www.hackerrank.com [문제] Query the following two values from the STATION table: The sum of all values in LAT_N rounded to a scale of decimal places. Th..
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..
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..
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..