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 trialAnuj Nagpal
Courses Plus Student 3,748 PointsGetting wrong answer
Like before, select the average "score" as "average", setting to 0 if null, by grouping the "movie_id" from the "reviews" table. Also, do an outer join on the "movies" table with its "id" column and display the movie "title" before the "average". Finally, include averages under 2.
1 Answer
David Tonge
Courses Plus Student 45,640 PointsHey Anuj,
Could you post the code that you're using, so we could take a look?
Anuj Nagpal
Courses Plus Student 3,748 PointsAnuj Nagpal
Courses Plus Student 3,748 PointsHey David, I am using this code :-
SELECT title, IFNULL(AVG(score),0) as average FROM movies LEFT OUTER JOIN reviews ON movies.id = reviews.movie_id GROUP BY movie_id HAVING average < 2
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsHi Anuj,
You may want to try refreshing the challenge and trying again.
Your query looks correct to me and it passed the challenge when I copied and pasted it in.