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

Databases

having 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.

Steven Parker
Steven Parker
229,644 Points

A link to the challenge would be helpful.

1 Answer

Steven Parker
Steven Parker
229,644 Points

Without 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;