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 Reporting with SQL Aggregate and Numeric Functions Practice Session

Sean Flanagan
Sean Flanagan
33,235 Points

Challenge 3 - Movie Average Rating

Hi. I'm having a problem with this challenge.

"-- Calculate the average rating for each movie and round it to one decimal place"

Here's my attempt:

SELECT ROUND(0, 1) AVG(rating) FROM reviews;

Output:

Error: near "(": syntax error

I would appreciate any feedback please.

2 Answers

Sean Flanagan
Sean Flanagan
33,235 Points

That worked. Thanks Dale. I've given your solution an up vote and Best Answer.

Philip Schultz
Philip Schultz
11,437 Points

I don't this would get you the average rating for each movie, right? Wouldn't this make more sense?

SELECT movie_id, ROUND(AVG(rating), 1) FROM reviews GROUP BY movie_id;

Hey Dale, by any chance would you know why I am getting "error title does not exist" when I do.

SELECT title, ROUND(AVG(rating), 1) AS average FROM reviews GROUP BY title;

?