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 Ordering, Limiting and Paging Results Limiting Results

Nelson Hinman Jr
Nelson Hinman Jr
7,078 Points

Problem with SQL Reporting Task #2 - finding the oldest Science Fiction book

I can't seem to get this to work. I am not sure if Science Fiction is a book title or a genre - or if I have something wrong.

SELECT * FROM books WHERE title LIKE "%Science Fiction%" ORDER BY first_published ASC LIMIT 1;

2 Answers

Steven Parker
Steven Parker
229,608 Points

You're really close, but it's not the title that should be compared to "Science Fiction", it's the genre.

Next time, if you're not sure, just try it both ways!

Nelson Hinman Jr
Nelson Hinman Jr
7,078 Points

All right, thanks for setting me straight.