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

Thomas Buchstab
Thomas Buchstab
14,766 Points

> SELECT genre, COUNT(genre) "genre_count" FROM books WHERE genre NOT NULL GROUP BY genre; whats wrong?

SELECT genre, COUNT(genre) "genre_count" FROM books WHERE genre NOT NULL GROUP BY genre;

it does count each genre and display the table as asked. Whats wrong?

Steven Parker
Steven Parker
230,274 Points

But you get a valid response from the query? I'd try it myself but you didn't link to the challenge.

2 Answers

I think you mean:

Select genre, count(genre) as "genre_count" from books Group by genre Having genre IS NOT NULL;

No that didn't work either. Did anyone get this? I'm stuck.....