mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 03:27:07 +00:00
6 lines
146 B
SQL
6 lines
146 B
SQL
# Write your MySQL query statement below
|
|
SELECT customer_number
|
|
FROM Orders
|
|
GROUP BY customer_number
|
|
ORDER BY count(customer_number) DESC
|
|
LIMIT 1; |