586-customer-placing-the-largest-number-of-orders
DevGod
Elf Vtuber
# Write your MySQL query statement belowSELECT customer_numberFROM ordersGROUP BY customer_numberORDER BY COUNT(customer_number) DESCLIMIT 1;# Write your MySQL query statement belowSELECT customer_numberFROM ordersGROUP BY customer_numberORDER BY COUNT(customer_number) DESCLIMIT 1;