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 trialGyörgy Varga
19,198 PointsA more complex solution
Hi!
Please check out my solution. I've got the same teacher back. Is it good?
WITH ONEPERIODS AS (
SELECT PERIODS.ID AS "Periods ID" FROM PERIODS
LEFT JOIN CLASSES ON PERIODS.ID = CLASSES.PERIOD_ID
WHERE PERIODS.ID = 1
),
FIRST_CLASS AS (
SELECT DISTINCT TEACHERS.ID AS "Teachers ID" FROM TEACHERS
LEFT JOIN CLASSES ON TEACHERS.ID = CLASSES.TEACHER_ID
LEFT JOIN ONEPERIODS ON CLASSES.PERIOD_ID = ONEPERIODS."Periods ID"
WHERE ONEPERIODS."Periods ID" IS NOT NULL
)
SELECT TEACHERS.ID, TEACHERS.FIRST_NAME, TEACHERS.LAST_NAME FROM TEACHERS
LEFT JOIN FIRST_CLASS ON TEACHERS.ID = FIRST_CLASS."Teachers ID"
GROUP BY TEACHERS.ID
HAVING FIRST_CLASS."Teachers ID" IS NULL
Thank you!
1 Answer
Mark Chesney
11,747 PointsIt's wonderful György!