250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코딩테스트 연습
- css
- 슬라이싱
- count
- 파이썬 슬라이싱
- Join
- ORDER BY
- Django
- YOLOv5
- 설계
- 파이썬
- List Comprehension
- sql
- where
- 파이썬 몫
- SQL 고득점 Kit
- html
- 프로그래머스
- Python3
- 단어 공부
- 아이엠어바텐더
- pcce 기출문제
- date_format
- map
- Len
- python
- 프로젝트
- GIT
- 데이터
- 백준
Archives
- Today
- Total
목록sub-query (1)
nan + nan = 2nan
[SQL] 코멘토 SQL 기초 문법2_review
1. 상품(product)의 카테고리(category)별로, 상품 수와 평균 가격대(list_price)를 찾는 쿼리를 작성하세요. 기존 답안 select category, count(1) as num_of_product, avg(list_price) as price_of_average from products group by category; 멘토님 Review 쿼리 잘 작성하셨습니다. 참고로 count(1)과 count(*)는 차이가 없다고 보셔도 무방합니다! 2. 2006년 1분기에 고객(customer)별 주문(order) 횟수, 주문한 상품(product) 의 카테고리(category) 수, 총 주문 금액(quantity * unit_price)을 찾는 쿼리를 작성하세요. (힌트: join) 기..
Database/SQL
2022. 3. 15. 10:49