vote up 11 vote down star
3

Hi, just wondering if any of you guys use Count(1) over Count(*) and if there is a noticeable difference for SQL Server 2005 in performance? Or is this just a legacy habit that has been brought forward from days gone past?

flag

1  
Don't know about SQL Server but in MySQL there is no difference. COUNT(column) on the other hand is different – Greg Aug 3 at 10:19
Nope, COUNT(SomeColumn) is exactly the same as COUNT('Foo') - thehobt.blogspot.com/2008/12/… – Kragen Aug 3 at 11:31
2  
Not true. COUNT(SomeColumn) will only return the count of rows that contain non-null values for SomeColumn. COUNT(*) and COUNT('Foo') will return the total number of rows in the table. – Steve Broberg Aug 3 at 13:51

7 Answers

vote up 11 vote down check

There is no difference.

Reason:

Books on line says "COUNT ( { [ [ ALL | DISTINCT ] expression ] | * } )"

"1" is a non-null expression: so it's the same as COUNT(*). The optimiser recognises it for what is is: trivial.

The same as EXISTS (SELECT * ... or EXISTS (SELECT 1 ...

Example:

SELECT COUNT(1) FROM dbo.tab800krows
SELECT COUNT(1),FKID FROM dbo.tab800krows GROUP BY FKID

SELECT COUNT(*) FROM dbo.tab800krows
SELECT COUNT(*),FKID FROM dbo.tab800krows GROUP BY FKID

Same IO, same plan, the works

Not relevant now: Answer from "Amr ElGarhy":

COUNT(1) is not the ordinal position of the column.

This is plainly and utterly wrong, and very misleading.

Poster has no proof to back up this statement.

It's what he thinks. The links contradict his thinking.

link|flag
vote up 1 vote down

I prefer using COUNT (1). There is no point in loading the DB engine with more work if you're not going to need this data.

link|flag
4  
Is the query plan different between COUNT(1) and COUNT(*)? Is it actually doing extra work? – Colin Mackay Aug 3 at 10:19
I prefer using COUNT(*) as it reflects what I mean better, but I still end up writing COUNT(1) as I know there's the possibility it will have better performance. – Ray Hidayat Aug 3 at 10:36
By possibility, I mean, if I'm unsure of how the particular database product will choose to optimise the query, I just write COUNT(1) - but not because I prefer it. I would be very surprised though if Microsoft SQL Server did not optimise COUNT(*) and COUNT(1) equivalently. – Ray Hidayat Aug 3 at 10:38
Can you justify why the DB engine thinks it's different? – gbn Aug 3 at 10:45
In all fairness, there's the possibility that COUNT(*) could be more efficient than COUNT(1), in a particular pathological implementation. – ChrisInEdmonton Aug 13 at 16:08
show 1 more comment
vote up 5 vote down

I would expect the optimiser to ensure there is no real difference outside weird edge cases.

As with anything, the only real way to tell is to measure your specific cases.

That said, I've always used COUNT(*).

link|flag
vote up 10 vote down

Had these URLs, which may help:

select count(*) vs. select count(1)

What is the difference between Count(*),Count(1).... in sql server?

Count(1) vs Count(*)

Debunking the Myth: SELECT COUNT(*) vs. SELECT COUNT(1)

Also you can google "Count(*) vs Count(1)" and you will find a good number of answers.

**What i understand about this:** Count(*) --> counts number of records based on all columns. Count(1) -- counts number of records based on just first column. "that also means you can call it like that : Count(2), Count(3),.... " So logically count(1) is giving a better performance.
link|flag
1  
+1 for citing references. – Colin Mackay Aug 3 at 10:22
+1 for refs as well, although you might want to add a summary to your actual answer. – Dav Aug 3 at 10:25
COUNT(1) is not based on ordinals. It's the same as count(*). 1 is an expression which can never be NULL. 1st link is Sybase, 3rd link is Oracle, question says SQL Server. – gbn Aug 3 at 10:33
Actually, this is very wrong: COUNT(1) is a constant expression. Not an ordinal positions like you can use in an order by clause. – gbn Aug 3 at 10:41
deleted my wrong answer, i understood it wrong, thanks for correcting. – Amr ElGarhy Aug 3 at 10:46
show 1 more comment
vote up 2 vote down

In SQL Server, these statements yield the same plans.

Contrary to the popular opinion, in Oracle they do too.

SYS_GUID() in Oracle is quite computation intensive function.

In my test database, t_even is a table with 1,000,000 rows

This query:

SELECT  COUNT(SYS_GUID())
FROM    t_even

runs for 48 seconds, since the function needs to evaluate each SYS_GUID() returned to make sure it's not a NULL.

However, this query:

SELECT  COUNT(*)
FROM    (
        SELECT  SYS_GUID()
        FROM    t_even
        )

runs for but 2 seconds, since it doen't even try to evaluate SYS_GUID() (despite * being argument to COUNT(*))

link|flag
vote up 3 vote down

Clearly, COUNT(*) and COUNT(1) will always return the same result. Therefore, if one were slower than the other it would effectively be due to an optimiser bug. Since both forms are used very frequently in queries, it would make no sense for a DBMS to allow such a bug to remain unfixed. Hence you will find that the performance of both forms is identical in all major SQL DBMSs.

link|flag
vote up 1 vote down

COUNT(*) and COUNT(1) are same in case of result and performance.

link|flag

Your Answer

Get an OpenID
or

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