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 Calculating the Minimum and Maximum Values

Edgardo Tupiño
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Edgardo Tupiño
Front End Web Development Techdegree Graduate 32,244 Points

Trouble with Challenge on Min Max values for Query

SELECT MIN(rating) AS star_min, MAX(rating) AS star_max FROM reviews GROUP BY movie_id = 6;

The challenge return me an error (query didnt correct min max ) =(

1 Answer

Steven Parker
Steven Parker
229,744 Points

That's not a valid "GROUP BY" expression, but you don't need "GROUP BY" in this challenge.

Did you mean to write "WHERE" instead?