586. Customer Placing the Largest Number of Orders ¶ SQL 1 2 3 4 5SELECT customer_number FROM Orders GROUP BY 1 ORDER BY COUNT(*) DESC LIMIT 1;