select sum(price),count(id) from order ;

查询得到price列的和,以及记录数。

该SQL中sum(price)是求列price的总和,

count(id)是根据查询到的ID数量得到的数据总行数。

count(id)要比count(*)查询速度更快更节约资源