1. 집계 함수 기본 연산합계 : SUM(컬럼)평균 : AVG(컬럼)select sum(food_preparation_time) total_food_preparation_time, # 상품 준비 시간 합계 avg(delivery_time) avg_food_delivery_time # 배달 시간 평균from food_orders데이터 개수전체 데이터 개수 : COUNT(컬럼) or COUNT(1) 몇 개의 값을 가지고 있는지 구할 때(중복 x) : DISTINCTselect count(1) count_of_orders, # 전체 주문 건수 count(distinct customer_id) count_of_customers # 주문한 고객 수 from food_orders데이..