Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 631 Bytes

_596. Classes More Than 5 Students.md

File metadata and controls

36 lines (26 loc) · 631 Bytes

All prompts are owned by LeetCode. To view the prompt, click the title link above.

Back to top


First completed : May 22, 2024

Last updated : July 01, 2024


Related Topics : Database

Acceptance Rate : 59.71 %


Solutions

SQL

SELECT
    c.class
FROM
    Courses c
GROUP BY
    c.class
HAVING 
    count(c.class) >= 5;