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 trialThomas 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?
2 Answers
Cindy Lea
Courses Plus Student 6,497 PointsTry IS NOT NULL. You have NOT NULL
BRYANT GOLD
5,475 PointsI think you mean:
Select genre, count(genre) as "genre_count" from books Group by genre Having genre IS NOT NULL;
Debora Ballabio
1,030 PointsNo that didn't work either. Did anyone get this? I'm stuck.....
Steven Parker
231,261 PointsSteven Parker
231,261 PointsBut you get a valid response from the query? I'd try it myself but you didn't link to the challenge.