일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pandas
- 프로그래머스
- 전처리
- seaborn
- 데이터분석
- 다중 JOIN
- 데이터시각화
- Oracle
- solvesql
- join
- not in
- GROUPBY
- Round
- TRUNCATE
- 그로스해킹
- having
- mysql :=
- 파이썬
- SQL
- MySQL
- hackerrank
- SUM
- 머신러닝
- 데이터리안 웨비나
- Limit
- airflow 설치
- 결측값
- SQLite
- PostgreSQL
- matplotlib
- Today
- Total
목록DISTINCT (2)
Milky's note
https://solvesql.com/problems/characteristics-of-orders/ solvesql © Copyright 2021-2022 solvesql.com solvesql.com 문제는 위와 같다. 지역별 각 카테고리 별로 얼마나 많은 양의 상품이 팔렸는 지 조회하느 쿼리인데 계속 오류가 나서 뭐지 했는데 알고보니 출력해야하는 컬럼 이름이 region이 아니고 Region으로 해주어야해서 이다 . 컬럼 명 출력시에 주의를 더 기울여야겠다. 그리고 주의해야할 점은 물건을 사는데 똑같은 사람이 몇 번 사는 경우가 있어서 중복 제거를 해준 값을 count 해주어야한다. select region as Region, count(distinct(case when category='Furni..
https://www.hackerrank.com/challenges/weather-observation-station-4/problem?isFullScreen=true Weather Observation Station 4 | HackerRank Find the number of duplicate CITY names in STATION. www.hackerrank.com [문제] Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table. The STATION table is described as follows: where LAT_N is..