Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Databases SQL Reporting by Example Day 1: Joining Tables Subjects in the Big Room

My Solution to this Challenge

After the last challenge I was curious about being more efficient with sub-queries. This was the final code I got that avoided hard coding the room id:

SELECT NAME FROM SUBJECTS WHERE ID IN (SELECT SUBJECT_ID FROM CLASSES
WHERE ROOM_ID = (SELECT ID FROM ROOMS ORDER BY CAPACITY DESC LIMIT 1));

I noticed I didn't need to add a Distinct keyword to exclude the duplicates with this answer. I'm assuming this is because my WHERE statement is technically pulling from a table that only populates each class id once?

1 Answer

Steven Parker
Steven Parker
229,708 Points

The second WHERE actually does return duplicate IDs, but the first WHERE is using the "IN" operator so it doesn't matter how many times a value appears in a result set, only if it exists in it or not.