#100. [LeetCode / MySQL] 596. Classes More Than 5 Students

문제

 

입력 코드

SELECT class
FROM Courses
GROUP BY class
HAVING COUNT(*) >= 5

 

코드 설명

#SELECT #GROUP BY #HAVING #COUNT

 

 

문제 출처

 

LeetCode - The World's Leading Online Programming Learning Platform

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com