Oracle 中count(1) count(*) 和count(列名) 函数的区别

2019-09-24

what is the difference between count(1) and count(*). count(1)比count(*)快?

select count(1) from tabs where table_name='user';
select count(1) from User_tables where table_name='username';

a)count(1)与count(*)比较:

1、如果你的数据表没有主键,那么count(1)比count(*)快
2、如果有主键的话,那主键(联合主键)作为count的条件也比count(*)要快
3、如果你的表只有一个字段的话那count(*)就是最快的啦
4、count(*) count(1) 两者比较。主要还是要count(1)所相对应的数据字段。
5、如果count(1)是聚索引,id,那肯定是count(1)快。但是差的很小的。 因为count(*),自动会优化指定到那一个字段。所以没必要去count(?),用count(*),sql会帮你完成优化的

b)count详解:

1、count(*)将返回表格中所有存在的行的总数包括值为null的行,然而count(列名)将返回表格中除去null以外的所有行的总数(有默认值的列也会被计入).
2、distinct 列名,得到的结果将是除去值为null和重复数据后的结果

c)举例演示如下:
SQL> select count(*) from test; -- count(*):包含NULL,一共6条记录
6
SQL> select count(1) from test; -- count(1):包含NULL,一共6条记录,和count(*)的结果一样
SQL> select count(sal) from test; -- count(列名):不包含NULL,但包含重复值项,一共3条记录
SQL> select count(distinct sal) from test; -- count(列名):不包含NULL,去重“count(distinct sal)”,一共2条记录
SQL> select distinct sal from test;

分类:数据库 | 标签: |

相关日志

评论被关闭!