select count 和count(*)的区别
Posted deptop
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了select count 和count(*)的区别相关的知识,希望对你有一定的参考价值。
一般情况下,Select Count ()和Select Count(1)两着返回结果是一样的,mysql会自动将select count()转为 select count(0).
假如表沒有主键(Primary key), 那么count(1)比count(*)快, 如果有主键的話,那主键作为count的条件时候count(主键)最快
如果你的表只有一个字段的话那count(*)就是最快的
count(*) 跟 count(1) 的结果一样,都包括对NULL的统计,而count(column) 是不包括NULL的统计.
转载:http://www.cnblogs.com/drake-guo/p/6111337.html
以上是关于select count 和count(*)的区别的主要内容,如果未能解决你的问题,请参考以下文章
select count 和 select count(*)的区别
select count(*)countcount的区别和执行效率比较