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 Querying Relational Databases Set Operations Set Operations

Challenge 2 of 6 - A minor mistake somewhere!?

I can't figure out why this query won't work. When i go into SQL Playground and ran this code by swapping out using books_north and books_south tables, it worked. I just don't understand why the challenge task hasn't accepted. I know its probably something minor but where??

SELECT Name FROM Fruit WHERE Name BETWEEN "A%" AND "K%" UNION SELECT Name FROM Vegetable WHERE Name BETWEEN "A%" AND "K%" ORDER BY Name ASC;