为什么InnoDB不将总数存起来?
InnoDB直接count(*)会遍历全表(没有where条件),虽然结果准确,但会导致性能问题。
按照效率排序的话,count(字段)<count(主键id)<count(1)≈count(*),所以建议读者,尽量使用count(*)。