My query is like the following:

SELECT count(*) AS total FROM posts GROUP BY category

The total returned is the total of all posts, Can some one please point me where is the issue in my syntax?

Thanks in advance.

link|improve this question

The total returned is the total of all posts - Are sure about that? Also, what do you want to be returned? – Mark Byers Jan 1 '11 at 19:58
feedback

1 Answer

I think the correct would be:

SELECT category, COUNT(*) AS total FROM posts GROUP BY category;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.