Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 831 Bytes

147_customer_placing_the_largest_number_of_orders.md

File metadata and controls

43 lines (29 loc) · 831 Bytes

SQL Everyday #147

Customer Placing the Largest Number of Orders

Site: LeetCode
Difficulty per Site: Easy

Problem

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

-- Submitted Solution
SELECT
    customer_number
FROM Orders
GROUP BY customer_number
ORDER BY COUNT(order_number) DESC
LIMIT 1
;

Site Solution

-- LeetCode Solution 
-- TBD

Notes

TBD

NB

ORDER BY w/ Aggregate Function

Go to Index
Go to Overview