vote up 29 vote down star
6

I have the following query:

select column_name, count(column_name)
from table
group by column_name
having count(column_name) > 1;

What would be the difference if I replaced all calls to count(column_name) to count(*)?

This question was inspired by a previous one.


Edit:

To clarify the accepted answer (and maybe my question), using count(*) in this case returns an extra row in the result that contains a null and the count of null values in the column.

flag

That's a cracking question. Here, have a <strike>cookie</strike> vote. – skaffman Jul 15 at 15:24

5 Answers

vote up 52 vote down check

count(*) counts NULLs and count(column) does not

[edit] added this code so that people can run it

create table #bla(id int,id2 int)
insert #bla values(null,null)
insert #bla values(1,null)
insert #bla values(null,1)
insert #bla values(1,null)
insert #bla values(null,1)
insert #bla values(1,null)
insert #bla values(null,null)

select count(*),count(id),count(id2)
from #bla

results 7 3 2

link|flag
1  
Just curious: if you have a row with all NULLs, would count(*) still count it, or is just count(column) for all columns? – Joel Coehoorn Sep 12 '08 at 15:29
it would count it – SQLMenace Sep 12 '08 at 15:36
Is this standard accross DBMSs? – Eclipse Jan 23 at 20:41
DB2 v9 is issuing a warning: SQLSTATE 01003: Null values were eliminated from the argument of a column function – Boune Jun 17 at 15:31
It's worth mentioning that if you have a non-nullable column such as ID, then count(ID) will significantly improve performance over count(*). – tsilb Aug 25 at 18:06
vote up 3 vote down

A further and perhaps subtle difference is that in some database implementations the count(*) is computed by looking at the indexes on the table in question rather than the actual data rows. Since no specific column is specified, there is no need to bother with the actual rows and their values (as there would be if you counted a specific column). Allowing the database to use the index data can be significantly faster than making it count "real" rows.

link|flag
vote up 4 vote down

Another minor difference, between using * and a specific column, is that in the column case you can add the keyword DISTINCT, and restrict the count to distinct values:

select column_a, count(distinct column_b)
from table
group by column_a
having count(distinct column_b) > 1;
link|flag
1  
Should the group by column and the one being counted be different? otherwise you would get nothing from this query – steevc Sep 12 '08 at 16:06
Yes, sorry.. I hadn't noticed that they were the same column in the example. I'll update the post. – Brannon Sep 12 '08 at 22:31
vote up 5 vote down

As explaned in the help file:

COUNT(*) returns the number of items in a group, including NULL values and duplicates.

COUNT(expression) evaluates expression for each row in a group and returns the number of nonnull values.

EDIT - This was from Books Online, if you don't have it installed you can find it here.

link|flag
For SQL newbs: To what help file are you referring? – Bill the Lizard Jul 15 at 15:33
vote up 2 vote down

To clarify SQLMenace's answer (and maybe my question), using count(*) in this case returns an extra row in the result that contains a null and the count of null values in the column.

link|flag

Your Answer

Get an OpenID
or

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