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 trialBabajide Kale
1,244 PointsSQL Statement, Database Fondations.
Write a SELECT statement that retrieves all "movies" with the "year" first and the "title" second.
My code is: SELECT movies.year, movies.title FROM movies;
and i get this response,
Bummer! You're not selecting year and title from movies correctly.
I'm almost positive that's the correct code but I could be wrong, someone help.
1 Answer
Paul Bentham
24,090 PointsThis task was totally buggy for me, just type in:
SELECT year, title FROM movies;
And keep pressing submit, eventually it will say it's correct.