1)count(*)会忽略所有的列,直接统计所有列数,不要使用count(列名),也就是不要使用count(1),count(id)
2)可以使用explain查询近似值,用近似值替代count(*)
3)使用缓存,记录总数
4)允许的话,把innodb改为myisam
5)SELECT (SELECT COUNT(*) from test_student) AS count FROM test_student;
2022-08-20 09:36:35
1)count(*)会忽略所有的列,直接统计所有列数,不要使用count(列名),也就是不要使用count(1),count(id)
2)可以使用explain查询近似值,用近似值替代count(*)
3)使用缓存,记录总数
4)允许的话,把innodb改为myisam
5)SELECT (SELECT COUNT(*) from test_student) AS count FROM test_student;