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

Development Tools

victor guia
victor guia
8,098 Points

Grouping and Joining - Task 2/3

Here's the challenge and my answer:

Challenge task 2 of 3 Like before, group reviews by "movie_id", get the average "score" as "average" and filter out any averages over 2. Type in your command below, then press Enter.

SELECT AVG(score) as average, FROM reviews GROUP BY movie_id HAVING average > 2;

BUMMER:There's something wrong with your SQL statement.

Please help. Thanks.

2 Answers

Andrew Dushane
Andrew Dushane
9,264 Points

It's asking you to filter out averages greater than 2. You're doing the opposite, selecting averages greater than 2.

victor guia
victor guia
8,098 Points

Thanks. I should have read the instructions more carefully.