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 SQL Basics Finding the Data You Want Filtering by Comparing Values

Minor mistake

In a workspace SQL Playground - Filtering By Comparing Values is small logic mistake:

In "Books Before 1900s" is code: SELECT * FROM books where first_published < 1900;

Its look ok, but above is question: -- What are all books released before the 20th century?

So if you wanna keep code the question should be looks like: "-- What are all books released before 1900?

But if you wanna keep the question valid, then code should be changed to: SELECT * FROM books where first_published <= 1900;

Because each century starts form "01" and and on "00" so 20 centry <1901-2000> and 19 centry <1801-1900>.

1 Answer

Can confirm