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 trialAngelos Bolovinos
3,958 PointsINNER JOIN
SELECT movies.title, movies.genre_id, genres.id, genres.name FROM movies INNER JOIN genres ON movies.title = genres.name;
Hi this my code. Where are the mistakes in syntax?
2 Answers
Ken Alger
Treehouse TeacherAngelos;
Task 1
We have a '
movies
' table with a 'title
' and 'genre_id
' column and a 'genres
' table has an 'id
' and 'name
' column. Use an INNER JOIN to join the 'movies
' and 'genres
' tables together only selecting the movie 'title
' first and the genre 'name
' second.
===
Wow, right? What does all that mean? Basically we need to SELECT specific columns (movies.title
and genres.name
) FROM a table (movies
) and INNER JOIN them to another table (genres
) ON specific id matching a value (movies.genre_id
and genres.id
).
SELECT movies.title, genres.name FROM movies INNER JOIN genres ON movies.genre_id = genres.id;
Does that make any sense? Post back if you are still stuck or have further questions.
Happy coding,
Ken
Angelos Bolovinos
3,958 PointsYes working, thanks.