[단골고객 찾기]1.) 고객별로 주문 건수와 총 주문 금액을 조회하는 SQL 쿼리를 작성해주세요- 고객별 주문건수, 총 주문금액 조회 - 출력 컬럼 [고객이름(커스터머), 주문건수(오더), 총 주문금액(sum 오더)] 단, 주문안한 고객도 포함 select c.CustomerName, count(o.CustomerID) as OrderCount, coalesce(sum(o.TotalAmount), 0) as TotalSpent from customers c left join orders o on c.CustomerID = o.CustomerID group by c.CustomerName - coalesce를 사용해 주문을 안한 사람의 걘 null이 아닌 0으로 출력 ..