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

Viktorija Kalniņa
Viktorija Kalniņa
1,652 Points

Error in script

Hi, Please help with correct script. Mine is with error: Bummer: The subquery doesn't return all ModelIDs for cars with the sticker price greater than 30000.

SELECT ModelName, StickerPrice FROM MODEL JOIN CAR ON MODEL.ModelID = CAR.ModelID WHERE StickerPrice IN (SELECT StickerPrice FROM CAR WHERE StickerPrice >30000)

2 Answers

Steven Parker
Steven Parker
229,670 Points

Here's a few hints:

  • the challenge only asks you to "list all the Model Names"
  • use the subquery to identify models with the right price
  • use WHERE and IN to filter using the subquery
  • you won't need to JOIN tables for this
Viktorija Kalniņa
Viktorija Kalniņa
1,652 Points

Thank you for hints! I got it right now.