The customer with number '3' has two orders, which is greater than either customer '1' or '2' because each of them only has one order. So the result is customer_number '3'.
1 2
# Write your MySQL query statement below select customer_number from (select customer_number, count(*) ascountfrom orders groupby customer_number orderbycountdesc) t limit1