SQL & 웹 개발 숙제

SQL 2주차 숙제 코딩

김민커 2023. 4. 20. 17:11

네이버 이메일을 사용하여 앱개발 종합반을 신청한 주문의 결제수단별 주문건수 세어보기

 

select payment_method , count(*) as cnt from orders

where email like '%naver.com' and course_title ='앱개발 종합반'

group by payment_method