Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Just wondering if any of you guys use Count(1) over Count(*) and if there is a noticeable difference in performance or if this is just a legacy habit that has been brought forward from days gone past?

(The specific database is SQL Server 2005.)

share|improve this question
3  
Don't know about SQL Server but in MySQL there is no difference. COUNT(column) on the other hand is different – Greg Aug 3 '09 at 10:19
Nope, COUNT(SomeColumn) is exactly the same as COUNT('Foo') - thehobt.blogspot.com/2008/12/… – Justin Aug 3 '09 at 11:31
43  
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 '09 at 13:51
for further detail check this select count 1 vs select count * in detail with graph – Ali Adravi May 26 '12 at 9:13
1  
Wow Steve and here I was 5 years into TSQL without knowing count(*) vs Count(ColumnName). Thanks – Harindaka Jun 14 '12 at 17:49

9 Answers

up vote 151 down vote accepted

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

Edit, Aug 2011

Similar question on DBA.SE: http://dba.stackexchange.com/questions/2511/what-is-the-difference-between-select-count-and-select-countany-non-null-col/2512#2512

Edit, Dec 2011

COUNT(*) is mentioned specifically in ANSI-92 (look for "Scalar expressions 125")

Case:

a) If COUNT(*) is specified, then the result is the cardinality of T.

That is, the ANSI standard recognises it as bleeding obvious what you mean. COUNT(1) has been optimised out by RDBMS vendors because of this superstition. Otherwise it would be evaluated as per ANSI

b) Otherwise, let TX be the single-column table that is the result of applying the <value expression> to each row of T and eliminating null values. If one or more null values are eliminated, then a completion condition is raised: warning-

share|improve this answer
1  
this is a pretty good answer! GBN saves the day again – Артём Царионов Nov 20 '12 at 17:37

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(*))

share|improve this answer

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.

share|improve this answer
6  
+1, because that's such a beautiful example of a fallacious argument. Looks like you're affirming the consequent, begging the question, and is that an appeal to belief? I think it is! There might even be a false dilemma in there somewhere... That is some very nice phrasing! :) – Benubird Jan 11 '12 at 23:44
I read and re-read @Benubird's comment and still can't decide whether it is complimentary or insulting! I'll opt for complimentary... – Tony Andrews May 14 at 11:05

Had these URLs, which may help:

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.

share|improve this answer
3  
+1 for citing references. – Colin Mackay Aug 3 '09 at 10:22
13  
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 '09 at 10:33
6  
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 '09 at 10:41
2  
deleted my wrong answer, i understood it wrong, thanks for correcting. – Amr ElGarhy Aug 3 '09 at 10:46
1  
This is not correct. Please delete it. Or, folks please downvote until it is 0. – ErikE Jan 2 at 8:27
show 1 more comment

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(*).

share|improve this answer
Per the accepted answer, this is not true for MS SQL - there is actually no difference between the two . – David Manheim Jun 12 '12 at 15:58

In the SQL-92 Standard, COUNT(*) specifically means "the cardinality of the table" (could be a base table, `VIEW, derived table, CTE, etc).

I guess the idea was that COUNT(*) is easy to parse. Using any other expression must require the parser to ensure it doesn't reference any columns (COUNT('a') where a is a literal and COUNT(a) where a is a column can yield different values).

In the same vein, COUNT(*) can be easily picked out by a human coder familiar with the SQL Standards, a useful skill when working with more than one vendor's SQL offering.

Also, in the special case SELECT COUNT(*) FROM MyPersistedTable;, the thinking is the DBMS is likely to hold statistics for the cardinality of the table.

Therefore, because COUNT(1) and COUNT(*) are semantically equivalent, I use COUNT(*).

share|improve this answer
1  
SQL-92 text linked from my answer on DBA.SE: dba.stackexchange.com/questions/2511/… – gbn Aug 19 '11 at 16:43

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

share|improve this answer
SET STATISTICS TIME ON

select count(1) from MyTable (nollck) -- table containing 1 million records. 

SQL Server Execution Times:
CPU time = 31 ms,  elapsed time = 36 ms.

select count(*) from MyTable (nollck) -- table containing 1 million records. 

SQL Server Execution Times:
CPU time = 46 ms,  elapsed time = 37 ms.

I've ran this hundreds of times, clearing cache every time.. The results vary from time to time as server load varies, but almost always count(*) has higher cpu time.

share|improve this answer
3  
I can't reproduce this. count(*) and count(1) return results within a few ms of each other, even when counting a table with 4.5 million rows, in my SQL 2008 instance. – Jeff Atwood Feb 4 '10 at 6:15

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.

share|improve this answer
6  
Is the query plan different between COUNT(1) and COUNT(*)? Is it actually doing extra work? – Colin Mackay Aug 3 '09 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 '09 at 10:36
1  
In all fairness, there's the possibility that COUNT(*) could be more efficient than COUNT(1), in a particular pathological implementation. – ChrisInEdmonton Aug 13 '09 at 16:08
3  
@ChrisInEdmonton, I've been reading asktom.oracle.com lately. COUNT(1) used to be slower because it was taking the time to check the nullness of 1 for every row. At some point the included an internal rewrite of count(1) to count(*) because so many people believed count(1) was faster. – Shannon Severance Sep 2 '09 at 21:48
2  
@Shannon: Did the rewrite include COUNT(2) too? – ypercube Jun 2 '11 at 11:04
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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