1、 count()会忽略所有的列,直接统计所有列数,不要使用count(列名)
2、 MyISAM中,没有任何where条件的count(
)非常快。
3、 当有where条件时,MyISAM的count统计不一定比其它引擎快。
4、 可以使用explain查询近似值,用近似值替代count(*)
5、 增加汇总表
6、 使用缓存

Was this helpful?

0 / 0

发表回复 0

Your email address will not be published.