Educational platforms like Canvas need to track course popularity to allocate server resources and teaching assistants. You need to find which classes are "large" based on enrollment.
Write an SQL query to report all the classes that have at least five students.
| student(VARCHAR) | class(VARCHAR) |
|---|---|
| A | Math |
| B | English |
| C | Math |
| D | Biology |
| E | Math |
| F | Computer |
| G | Math |
| H | Math |
| I | Math |
| class(VARCHAR) |
|---|
| Math |