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 Querying Relational Databases Joining Table Data with SQL JOIN Queries

In a car database there is a Sale table with columns, SaleID, CarID, CustomerID, LocationID, SalesRepID, SaleAmount and

Not sure what i am doing wrong here:

SELECT firstname, lastname, saleamount FROM sale sa INNER JOIN salesRep AS sr ON sa.SalesRepID = sr.SalesRepID;

1 Answer

Steven Parker
Steven Parker
229,644 Points

Me either! I copied your code and pasted it directly into the challenge and it passed task 3.

Try again?

P.S. To make issues like this easier to test, also provide your solutions to the previous tasks.