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 trialNavalkrushna Allurwar
3,557 Pointsgetting the grand total
2 Answers
Steven Parker
231,248 PointsYou forgot to include your code here, but here's a copy of the answer I gave when you re-asked the question.
You have a few issues here:
- a
GROUP BY
clause should come after aWHERE
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.
Navalkrushna Allurwar
3,557 PointsThank you.
Aananya Vyas
20,157 PointsSELECT SUM(rating) AS starman_total_ratings FROM reviews WHERE movie_id = '6';
^try this!
Navalkrushna Allurwar
3,557 PointsNavalkrushna Allurwar
3,557 Pointshelp to solve above problem