일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- airflow.cfg
- 그로스해킹
- SUM
- 결측값
- solvesql
- having
- Round
- TRUNCATE
- 파이썬
- MySQL
- 머신러닝
- PostgreSQL
- airflow 설치
- 프로그래머스
- not in
- pandas
- seaborn
- hackerrank
- Limit
- SQL
- matplotlib
- 데이터시각화
- GROUPBY
- SQLite
- 데이터분석
- 다중 JOIN
- join
- Oracle
- 데이터리안 웨비나
- 전처리
- Today
- Total
목록SQL (63)
Milky's note
https://www.hackerrank.com/challenges/draw-the-triangle-1/problem?isFullScreen=true Draw The Triangle 1 | HackerRank Draw the triangle pattern using asterisks. www.hackerrank.com [문제] P(R) represents a pattern drawn by Julia in R rows. The following pattern represents P(5): * * * * * * * * * * * * * * * Write a query to print the pattern P(20). [답] - mysql set @star=21; select repeat('* ', @star..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/k9tUN/btrxiXYOnY3/SaTxtt0b0tTVIaBLdLThT1/img.png)
https://www.hackerrank.com/challenges/the-report/problem?isFullScreen=true&h_r=next-challenge&h_v=zen&h_r=next-challenge&h_v=zen&h_r=next-challenge&h_v=zen The Report | HackerRank Write a query to generate a report containing three columns: Name, Grade and Mark. www.hackerrank.com [문제] You are given two tables: Students and Grades. Students contains three columns ID, Name and Marks. Grades conta..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/rFmX1/btrxkgQ3yTw/Iz6sfsVOLbvb2YLtYsrKn1/img.jpg)
https://www.hackerrank.com/challenges/average-population-of-each-continent/problem?isFullScreen=true&h_r=next-challenge&h_v=zen&h_r=next-challenge&h_v=zen Average Population of Each Continent | HackerRank Query the names of all continents and their respective city populations, rounded down to the nearest integer. www.hackerrank.com [문제] Given the CITY and COUNTRY tables, query the names of all t..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bIdxKW/btrxiuigNTa/7fSXLFLwYRQzxXi18i0PEK/img.jpg)
https://www.hackerrank.com/challenges/african-cities/problem?isFullScreen=true&h_r=next-challenge&h_v=zen African Cities | HackerRank Query the names of all cities on the continent 'Africa'. www.hackerrank.com [문제] Given the CITY and COUNTRY tables, query the names of all cities where the CONTINENT is 'Africa'. Note: CITY.CountryCode and COUNTRY.Code are matching key columns. Input Format The CI..