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?
|
3
|
|||||||||||
|
|
|
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 Not relevant now: 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. |
|||
|
|
|
|
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. |
||||||||||||
|
|
|
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 |
||
|
|
|
|
Had these URLs, which may help: select count(*) vs. select count(1) 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. |
||||||||||||
|
|
|
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. |
||
|
|
|
|
COUNT(*) and COUNT(1) are same in case of result and performance. |
||
|
|
