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 Database Foundations SQL Calculating, Aggregating and Other Functions Grouping, Joining and Cleaning Up

MySQL join code issues

I am working on a MySQL code challenge, and am a little stuck...

Question: 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, filter out any "average" score over 2.

Code: (that's not working) SELECT IFNULL(AVG(score), 0) AS average FROM reviews OUTER JOIN movies ON movies.id = title, average GROUP BY movie_id HAVING average <= 2;

Help! There's something weird with my join, but I'm not sure why...

1 Answer

My answer was:

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;

Ah, I see. I was trying to join the movies table to the reviews table, instead of the other way around. Thanks bothxp!