count(1)、count(*)与count(col)的区别

count(*)和count(1)无区别,有区别估计也是7i,8i时代的东西,如果有索引,并且索引列非空,那么可以走索引,当然加列is not null也可以,对于允许为空的索引列,当然如果真的有空,那么加了条件结果是不同的

count(col)就是按这个col列统计了,如果有索引,不管col是否为空,都能走索引,没有索引那无法走

count(*)和count(1)都是统计所有行的
count(col)统计col列不为空的记录

 

 

 

COUNT({ * | [ DISTINCT | ALL ] expr }) [ OVER (analytic_clause) ]

Link: http://docs.oracle.com/cd/E11882 ... s039.htm#SQLRF00624

If you specify expr, then COUNT returns the number of rows where expr is not null. You can count either all rows, or only distinct values of expr.

------------------------------------
count(1) 中的1仅仅是表达式并不是第一个字段的含义。1 总是不为null,所以此写发跟count(*)是一样的。

 

 

转自:http://www.itpub.net/thread-1429328-3-1.html

你可能感兴趣的:(count(1)、count(*)与count(col)的区别)