leetcode

Leetcode submissions
git clone git://git.laack.co/leetcode.git
Log | Files | Refs | README

classes-more-than-5-students.sql (153B)


      1 --Select all classes with 5 or more students
      2 --Runtime: 543ms Beats: 69.13%
      3 SELECT C.class
      4 FROM Courses AS C
      5 GROUP BY class
      6 HAVING count(C.student) >= 5