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

Is this query incorrect?

SELECT Model.ModelName, Car.VIN, Car.StickerPrice, Make.MakeName FROM Make INNER JOIN Model ON Model.MakeID = Make.MakeID INNER JOIN Car ON Car.ModelID = Model.ModelID;

Ari Misha
Ari Misha
19,323 Points

Hiya there! It all depends on the challenge. Maybe post the challenge here?

1 Answer

Steven Parker
Steven Parker
229,744 Points

Did the challenge ask you to show only those specific columns? If not, perhaps the challenge was expecting you to use "SELECT *".

If that's not it, please post a link to the challenge page to facilitate a more complete analysis.