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

Cody Stephenson
Cody Stephenson
8,361 Points

I got the correct answer - is there anything wrong with my solution from a best practices/readability standpoint?

SELECT DISTINCT first_name, last_name, grade FROM classes
  INNER JOIN teachers ON classes.teacher_id = teachers.ID
  INNER JOIN subjects ON classes.subject_id = subjects.ID
WHERE subjects.grade = 8;