总结:
1、count(*)是表示整个结果集有多少条记录,包含NULL
2、count(column) 是表示结果集中有多少个column字段不为空的记录
3、count(1)这个用法和count(*)的结果是一样的 【性能有所区别】
性能问题:
1.任何情况下select count(*) from tablename 是最优选择;
2.尽量减少select count(*) from tablename where col = ‘VALUE’ 这种查询;
3.杜绝select count(col) from tablename where col2 = ‘VALUE’ 的出现。
如果表没有主键,那么count(1)比count(*)快。
如果有主键,那么count(主键,联合主键)比count(*)快。
如果表只有一个字段,count(*)最快。
count(1)跟count(主键)一样,只扫描主键。count(*)跟count(非主键)一样,扫描整个表。明显前者更快一些。