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

PHP

James Dawson
James Dawson
2,770 Points

Min, max functions Task

I am being asked to find the MIN and MAX ratings for Starman. Here is my query:

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

I'm asking for MIN rating with alias and MAX rating with it's personal alias. I'm also listing the movie_id in question with a WHERE keyword and Selecting the movie_id. I'm pulling this from the "reviews" table.

It's not working.

What am I missing?

James Dawson
James Dawson
2,770 Points

Solved it. It simply didn't to SELECT the movie_id column.