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

PHP Integrating PHP with Databases Using Relational Tables JOINing Tables

Syntax Error? SQL

SELECT title, img, format, year, category, genre FROM Media JOIN Media_Genres ON Media.genre_id = Media_Genres.genre_id WHERE Media.media_id = 3

1 Answer

Steven Parker
Steven Parker
229,608 Points

You've joined the "Media_Genres" table, but remember that it's just a junction table to help you join the "Genres" table. You still need to join the "Genres" table.

Also, add to but don't otherwise modify the original SQL. In particular, the "SELECT *" should not be replaced with explicit columns.