执行count(1)、count(*) 与 count(列名)

2022-06-06  本文已影响0人  码农突围

1.count(1) and count()*

从执行计划来看,count(1)和count()的效果是一样的。
当表的数据量大些时,对表作分析之后,使用count(1)还要比使用count(
)用时多!
当数据量在1W以内时,count(1)会比count(*)的用时少些,不过也差不了多少。

如果count(1)是聚集索引时,那肯定是count(1)快,但是差的很小。
因为count(),会自动优化指定到那一个字段。所以没必要去count(1),使用count(),sql会帮你完成优化的
因此:在有聚集索引时count(1)和count(*)基本没有差别!

2.count(1) and count(字段)

两者的主要区别是

3.count() 和 count(1)和count(列名)区别*

执行效果上:

执行效率上:

实例分析

create table counttest
(name char(1),
age char(2));
 
insert into counttest values
('a', '14'),
('a', '15'),
('a', '15'),
('b', NULL),
('b', '16'),
('c', '17'),
('d', null),
('e', '');

select name,
count(name),
count(1),
count(*),
count(age),
count(distinct(age))
from counttest
group by name;

结果如下:

image.png

作者:BigoSprite
blog.csdn.net/iFuMI/article/details/77920767

上一篇下一篇

猜你喜欢

热点阅读