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 trialMichael Smith
Courses Plus Student 4,916 PointsQuestion about the Statement.
At about one minute into the Joining Table and Aliasing video he add's "= genres.id;" on the end of the statement but fails to explain why. Can someone please explain that portion for me. I might be forgetting something we already covered and if thats the case I will go back and re-watch that section.
Thanks in advance.
2 Answers
William J. Terrell
17,403 Points'movies.genre_id' stands for the 'genre_id' column in the 'movies' table.
He's joining that column with the 'id' column in the 'genres' table.
So he's joining "movies.genre_id" with "genres.id" :)
Michael Smith
Courses Plus Student 4,916 PointsNever mind... Pretty sure I figured it out.
Thanks!