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!
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
Craig Okeeffe
1,050 Points> SELECT COUNT (genre) FROM books AS scifi_book_count WHERE genre="Science Fiction"; what is wrong with this answer
IN SQL reporting Task 1 I put the following answer SELECT COUNT (genre) FROM books AS scifi_book_count WHERE genre="Science Fiction"; I get didn't get the correct count. I have reviewed the video 3X.. not sure what I am getting incorrect. Any help?
1 Answer

Steven Parker
224,848 PointsThe column alias must come directly after the column.
And it won't affect passing, but you can count whole rows ("COUNT(*)
"):
SELECT COUNT(*) AS scifi_book_count FROM books WHERE genre = "Science Fiction";