Here's the initial query:
SELECT COUNT(column) FROM table GROUP BY column;
This gives me something like the following:
COUNT(column)
2
4
1
1
3
etc.
BUT I need to to count all of those together in one number! How could I do that? COUNT(COUNT(column)) throws an error: "Invalid use of group function".
P.S. this is not used in any program, if it was, it would be trivial to count them together.

link|improve this question

50% accept rate
feedback

2 Answers

up vote 3 down vote accepted

remove the group by:

select count(column) from table;

if you need distinct columns:

select count(distinct column) from table; -- might not work in mysql

or:

select count(*) from (select distinct column from table) as columns;
link|improve this answer
try the last one it always works. – ahmet alp balkan May 25 '11 at 9:28
distinct did the trick, thanks ;) – jurchiks May 25 '11 at 9:30
feedback

Not sure if this works in mysql: SELECT COUNT(distinct column) FROM table

link|improve this answer
distinct works, at least on mysql 5.5 – jurchiks May 25 '11 at 9:34
feedback

Your Answer

 
or
required, but never shown

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