일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SQLite
- 프로그래머스
- 데이터분석
- GROUPBY
- MySQL
- Round
- PostgreSQL
- 파이썬
- seaborn
- 머신러닝
- 다중 JOIN
- 데이터리안 웨비나
- join
- SUM
- airflow 설치
- Limit
- hackerrank
- pandas
- not in
- SQL
- solvesql
- matplotlib
- 전처리
- mysql :=
- 결측값
- having
- 데이터시각화
- 그로스해킹
- TRUNCATE
- Oracle
- Today
- Total
목록SQL (63)
Milky's note
https://solvesql.com/problems/multiple-medalist/ solvesql © Copyright 2021-2022 solvesql.com solvesql.com 문제는 다음과 같고 테이블 4개를 join 해야하기 때문에 조금 복잡했지만 순서대로 따라가서 풀다보면 금방 풀렸다. 그리고 주의해야할 점은 복수의 국적으로 메달을 수상한 선수를 찾아야하기 때문에 team이 1 이상인 것들만을 조회하였다. select distinct a.name from records r join athletes a on a.id = r.athlete_id join games g on r.game_id = g.id join teams t on r.team_id = t.id where r.medal is..
https://solvesql.com/problems/estimated-delivery-date/ solvesql © Copyright 2021-2022 solvesql.com solvesql.com 문제는 위와 같다. 주제가 피벗 테이블이라서 피벗으로 어떻게 풀어야할까 고민하다가 너무 어렵게 빠져버려서 group by를 사용해서 푸는 방법으로 풀었다. 1월 한달 동안의 배송 성공과 실패 쿼리를 뽑는 것으로 성공, 실패에 대한 조건은 case문을 사용해주었고 그것을 count 해주는 방식으로 풀었다. select date(order_purchase_timestamp) as purchase_date, count(case when date(order_delivered_customer_date) < date(..
https://www.hackerrank.com/challenges/symmetric-pairs/problem?isFullScreen=true Symmetric Pairs | HackerRank Write a query to output all symmetric pairs in ascending order by the value of X. www.hackerrank.com [문제] You are given a table, Functions, containing two columns: X and Y. Two pairs (X1, Y1) and (X2, Y2) are said to be symmetric pairs if X1 = Y2 and X2 = Y1. Write a query to output all s..
https://www.hackerrank.com/challenges/print-prime-numbers/problem?isFullScreen=true Print Prime Numbers | HackerRank Print prime numbers. www.hackerrank.com [문제] Write a query to print all prime numbers less than or equal to 1000. Print your result on a single line, and use the ampersand (&) character as your separator (instead of a space). For example, the output for all prime numbers