[수업 목표]
-> 동일한 범주의 데이터를 묶어주는 Group by
-> 깔끔하게 데이터를 정렬해보자: Order by
1) Group by 기능
a) 동일한 범주의 개수 구하기
*count(*)를 사용
```
select 범주별로 세어주고 싶은 필드명, count(*) from 테이블명
group by 범주별로 세어주고 싶은 필드명;
```
b) 동일한 범주에서의 최솟값, 최솟값, 평균, 합계
count(*) 자리에 min(최솟값을 알고 싶은 필드명) 또는 max(최댓값을 알고 싶은 필드명), avg(평균값을 알고 싶은 필드명), sum(합계를 알고 싶은 필드명)
2) Order by 기능
-> 내림차순(desc), 오름차순(기본)
select * from checkins
order by likes desc;
3) Where와 Group by, Order by 함께 사용해보기
select payment_method, count(*) from orders
where course_title = "웹개발 종합반"
group by payment_method;
쿼리가 실행되는 순서: from → where → group by → select → order by
select payment_method, count(*) from orders
where course_title = "웹개발 종합반"
group by payment_method;
1) 기본
select * from orders o
where o.course_title = '앱개발 종합반'
2) as를 붙여서 별칭을 추가하는 것도 가능
select payment_method, count(*) as cnt from orders o
where o.course_title = '앱개발 종합반'
group by payment_method
3) 출력될 필드에 별칭을 붙이는 것도 가능
select payment_method, count(*) as cnt from orders o
where o.course_title = '앱개발 종합반'
group by payment_method
-> 네이버 이메일을 사용하여 앱개발 종합반을 신청한 주문의 결제수단별 주문건수 세어보기
select payment_method, count(*) from orders
where email like '%naver.com' and course_title = '앱개발 종합반'
group by payment_method
이 기능만 잘 써도 단일테이블에서는 자료를 꽤나 유용하게 뽑아낼 수 있을 것 같다.
하지만 sql은 역시 join으로 여러테이블 자료를 가져와서 쓰는 게 아닐까?