数据库:mysql 5.5 

数据量:45199077 条

sql语句:

select count(1) from tbresult;
select count(id) from tbresult;

查询时间对比图:

mysql 千万级的 count统计对比_sql语句

mysql 千万级的 count统计对比_mysql_02


总结:在统计查询的时候尽量使用count(id),不要使用count(*)这样的;特别是数据量特别大的时候。


下面是重启后的对比图

mysql 千万级的 count统计对比_sql语句_03

重启mysql并把sql语句换位置后的结果:

mysql 千万级的 count统计对比_sql语句_04