leetcode

Solution to some Leetcode problems written in C++
git clone git://git.dimitrijedobrota.com/leetcode.git
Log | Files | Refs | README | LICENSE

0586.sql (91B)


      1 SELECT customer_number
      2 FROM Orders
      3 GROUP BY customer_number
      4 ORDER BY COUNT(*) DESC
      5 LIMIT 1