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 Reporting with SQL Aggregate and Numeric Functions Counting Groups

Count Function

In the library database, how many books are with the author of "J.K. Rowling"? Alias the result as jk_book_count. The books table has the columns id, title, author, genre and first_published.

My Answer select count(*) as jk_book_count from books where author = "J.K.Rowling";

Bummer: Your query didn't perform the correct count.

Could you please tell me what is wrong with my answer?

2 Answers

Thank you! The no space was the issue as you pointed out.

Steven Parker
Steven Parker
229,644 Points

Naoya Yuda — Glad to help. You can mark the question solved by choosing a "best answer".
And happy coding!

Steven Parker
Steven Parker
229,644 Points

The "view challenge" button in the upper right seems to link to a totally different challenge!

But the issue with your query is that you have "J.K.Rowling" (with no space) instead of "J.K. Rowling".