Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 567 Bytes

File metadata and controls

28 lines (19 loc) · 567 Bytes

English Version

题目描述

None

解法

SQL

SELECT customer_number
FROM 
    (SELECT customer_number,
         count(*) AS total
    FROM orders
    GROUP BY  customer_number
    ORDER BY  total DESC limit 1) tmp