Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Damian Toczek
4,471 PointsHow should i count it then?
Hello, i'm bit annoyed and confused for the first time on TTH.
It want's me to count the amount of books that are in the SciFi genre.
SELECT COUNT(title) FROM books AS "scifi_book_count" WHERE genre="Science Fiction";
I also look back on the video few times and i don't understand this! What am i doing wrong?
??? I checked "Attach my code" and it didn't? Okayyy...
1 Answer

KRIS NIKOLAISEN
54,739 PointsUse count(*) for your count and filter by genre = Science Fiction
SELECT COUNT(*) as scifi_book_count FROM books WHERE genre = "Science Fiction"
Damian Toczek
4,471 PointsDamian Toczek
4,471 PointsI guess i put the "AS" in the wrong place.
Damian Toczek
4,471 PointsDamian Toczek
4,471 PointsYes i put the "AS" in the wrong place, god damn it. I guess 3am it bit too late to use my brain :/