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.)
|
Just wondering if any of you guys use (The specific database is SQL Server 2005.) |
|||||||||||||||||
|
|
There is no difference. Reason: Books on line says " "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 Example:
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
That is, the ANSI standard recognises it as bleeding obvious what you mean.
|
|||||
|
|
In Contrary to the popular opinion, in
In my test database, This query:
runs for However, this query:
runs for but |
|||
|
|
|
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. |
|||||||
|
|
Had these URLs, which may help: What is the difference between Count(*),Count(1).... in sql server? 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.
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. |
|||||||||||||||||||||
|
|
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 |
|||
|
|
In the SQL-92 Standard, I guess the idea was that In the same vein, Also, in the special case Therefore, because |
|||||
|
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. |
|||||
|
|
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. |
|||||||||||||||||||
|