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!
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

Marc Bienaimé
1,116 Pointshaving trouble with the JOIN syntax in this Challenge. Please help me understand.
I'd like to advance through this Challenge but am forgetting what the LEFT OUTER JOIN syntax should look like when trying to add the title.
1 Answer

Steven Parker
225,770 PointsWithout seeing the actual challenge, I can just give you a general format for using a left join:
SELECT field1, field2, etc
FROM table1
LEFT OUTER JOIN table2 ON table1.somefield = table2.matching_field;
Steven Parker
225,770 PointsSteven Parker
225,770 PointsA link to the challenge would be helpful.