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

David Bouchare
David Bouchare
9,224 Points

SQL - average > 2 code challenge Grouping, Joining and Cleaning Up

Hi everyone,

I don't know what's wrong with this query:

SELECT AVG(score) AS average FROM reviews GROUP BY movie_id HAVING average > 2

This is in response to the following question: "Like before, group reviews by "movie_id", get the average "score" as "average" and filter out any averages over 2."

Thanks in advance.

2 Answers

I think you might need to flip your operator from > to <=.

SELECT AVG(score) AS average FROM reviews GROUP BY movie_id HAVING average <= 2;
David Bouchare
David Bouchare
9,224 Points

Thanks Steve, I didn't read the exercise properly. It is working now