- 주문이 가장 많은 고객번호를 출력하라
SELECT customer_number FROM Orders GROUP BY customer_number ORDER BY COUNT(*) DESC LIMIT 1