Site: LeetCode
Difficulty per Site: Easy
Write a solution to find the customer_number
for the customer who has placed the largest number of orders.
The test cases are generated so that exactly one customer will have placed more orders than any other customer. [Full Description]
-- Submitted Solution
SELECT
customer_number
FROM Orders
GROUP BY customer_number
ORDER BY COUNT(order_number) DESC
LIMIT 1
;
-- LeetCode Solution
-- TBD
TBD
ORDER BY
w/ Aggregate Function