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 trialharpreet kaur kandola
1,429 Pointsreporting with SQL
We're still using the library database with the books table. There's a title, author, genre and first_published column. Find the earliest Science Fiction book in our library. Only one result should be returned. All columns should be selected.
8 Answers
Vipin Singh
15,268 PointsSELECT * FROM books WHERE genre = "Science Fiction" ORDER BY first_published LIMIT 1;
John Lukacs
26,806 Points!``` SELECT * FROM books WHERE genre = "Science Fiction" ORDER BY first_published ASC LIMIT 1;
tree house
981 PointsSELECT * FROM books WHERE genre = "Science Fiction " ORDER BY first_published ASC LIMIT 1;
sql sai
232 PointsSELECT * FROM books WHERE genre = "Science Fiction" ORDER BY first_published LIMIT 1;
Muhammad Anwar Ul Haq
Full Stack JavaScript Techdegree Graduate 18,781 PointsHere is the correct Answer
SELECT * FROM books WHERE genre = "Science Fiction" ORDER BY first_published ASC LIMIT 1;
Indhira Acevedo
1,894 Pointsi did that and it keeps telling me im wrong
Muhammad Anwar Ul Haq
Full Stack JavaScript Techdegree Graduate 18,781 PointsHere is the correct Answer
SELECT * FROM books WHERE genre = "Science Fiction" ORDER BY first_published ASC LIMIT 1;
Saiteja Vemula
7,162 PointsSELECT * FROM books WHERE genre = "Science Fiction" ORDER BY genre ASC LIMIT 1;
is the query
Thomas Shavor
2,342 PointsSELECT * FROM books WHERE genre = "Science Fiction" ORDER BY genre ASC LIMIT 1;