Tables:
- STUDENT (SNUM: INTEGER, SNAME: STRING, MAJOR: STRING)
- CLASS (CNAME: STRING, MEETS_AT: STRING, ROOM: STRING, FID: INTEGER)
- ENROLLED (SNUM: INTEGER, CNAME: STRING)
Task:
Find the names of all classes that either meet in room R128 or have five or more students enrolled.
How would you write the SQL statement to include both the above conditions? I was able to do it in two SQL statements:
SELECT CNAME
FROM ENROLLMENT
GROUP BY CNAME
HAVING COUNT(CNAME) > 5
SELECT CNAME
FROM CLASS
WHERE ROOM = 'R128'
But how can I merge these into one statement?
This way you can merge the 2 different data together