mysql统计分组数的方法:
select count(*) from 表名 where 条件
这样查出来的是总记录数
select count(*) from 表名 where 条件 group by id
这样统计的会是每组的记录条数.
如何获得 第二个sql语句的总记录条数?
则是,如下:
select count(*) from(select count(*) from 表名 where 条件 group by id ) a ;
select count(*) from (select count(*) from `papa_stadium_goods_storage_record` where `c_time`>=1474560000 and `c_time`<1476201600 group by `record_type`) a
注意:
子查询方式,mysql中子结果集必须使用别名,而oracle中不需要特意加别名!