MySQL统计数据count(*) 和 count(1) 什么区别??


MySQL统计数据count(*) 和 count(1) 什么区别??

数据库性能优化 程序员 mysql 数据库设计 oracle

ajian2k 10 years, 1 month ago

count(*) count(1) 一样,楼主如果要统计,建议用 count(主键) 的方式!

Baggio answered 10 years, 1 month ago

我记得count(1)只扫描主键Index就可以得到数据,count(*)是扫描表的,效率上有所不同,其他就如上面的所说,与count(column)关于Null的判断

汤姆可乐猫 answered 10 years, 1 month ago

我也一直想着count(*)和count(1)有什么区别,看来完全一样!了解了

Ericcc answered 10 years, 1 month ago

不好意思,第一次的回答确实错了,我试验一下,
1. count(1) count(*) 是一样的,都返回包括 null 在内的值, 1 不是指的第一列!当然 count(2) count(1) 是一样的。
2. count(column) count(*) 是不一样的, column 是字段名,通过 count(column) 取出来的值是不包括null的。

呜呜,题主真是不好意思,差点误导你。

卖女孩的小柴火 answered 10 years, 1 month ago

没有区别.


 mysql> explain extended select count(*) from tmp;
...
1 row in set, 1 warning (0.34 sec)

mysql> show warnings;
+-------+------+--------------------------------------------------+
| Level | Code | Message                                          |
+-------+------+--------------------------------------------------+
| Note  | 1003 | select count(0) AS `count(*)` from `test1`.`tmp` |
+-------+------+--------------------------------------------------+
1 row in set (0.00 sec)


http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html#function_count

COUNT(expr) Returns a count of the number of non-NULL values of expr in
the rows retrieved by a SELECT statement. ... COUNT(*) is somewhat different
in that it returns a count of the number of rows retrieved, whether or
not they contain NULL values.

消逝的热情 answered 10 years, 1 month ago

Your Answer