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

getting the grand total

help to solve above problem

2 Answers

Steven Parker
Steven Parker
231,140 Points

You forgot to include your code here, but here's a copy of the answer I gave when you re-asked the question.

:point_right: You have a few issues here:

  • a GROUP BY clause should come after a WHERE clause
  • the challenge did not ask for a GROUP BY
  • the challenge did not ask for movie_id to be displayed
  • the name of the id column is movie_id but the WHERE clause has id

In future, remember that you can edit your question instead of asking it again.

Thank you.

Aananya Vyas
Aananya Vyas
20,157 Points

SELECT SUM(rating) AS starman_total_ratings FROM reviews WHERE movie_id = '6';

^try this!