Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Logan Fox
Courses Plus Student 3,379 PointsAdd to the following SELECT statement to JOIN the Media table and the Genres table using the joining table Media_Genres.
I can't figure out what I am doing wrong? Can someone help?
SELECT * FROM Media WHERE JOIN media_id=3 Media_Genres ON Media.media_id = Genres.genre_id;
3 Answers

Steven Parker
220,450 PointsHere a few hints:
- a
WHERE
clause would come after anyJOIN
clauses - the requirements don't sound like a
WHERE
is needed anyway - the first thing after the
JOIN
keyword should be a table name - since the instructions indicate a junction table is needed, there will be 2
JOIN
s
In future questions, please provide a link to the course page to facilitate an accurate answer.

Logan Fox
Courses Plus Student 3,379 PointsNo, I don't really understand how JOIN works?

Steven Parker
220,450 PointsThe basic syntax is: "JOIN
table_name ON
key_matching_expression". You have all these parts in your code above, but they got mixed with a WHERE
clause. As I mentioned before, this challenge will require 2 joins because there are 3 tables.

Logan Fox
Courses Plus Student 3,379 PointsOK Thank you I think I got it!
Logan Fox
Courses Plus Student 3,379 PointsLogan Fox
Courses Plus Student 3,379 PointsOk I'm just not understanding how JOIN works.
https://teamtreehouse.com/library/integrating-php-with-databases/using-relational-tables/joining-tables
Steven Parker
220,450 PointsSteven Parker
220,450 PointsSo did you get it with those hints?