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 trialBill Ertle
9,286 Pointsreporting with sql
i'm stuck on a challenge task, here's the link:
https://teamtreehouse.com/library/reporting-with-sql/aggregate-and-numeric-functions/summing-values
thoughts anyone?
your input is appreciated!
2 Answers
jason chan
31,009 Pointsselect sum(rating) as starman_total_ratings from reviews where movie_id = 6;
sum all ratings change name to starman_total_ratings from reviews table where movie_id is 6
jason chan
31,009 PointsNo problem. ;) happy coding.
Bill Ertle
9,286 PointsBill Ertle
9,286 Pointsthank you, jason! my incorrect answer was much more complicated than it needed to be.