有关mysql取得group by总记录行数的方法,通过group by sql_calc_found_rows语句实现,在很多分页的程序中会用到,感兴趣的朋友参考下。
mysql获取group by总记录行数的方法
通常情况下,mysql获取group by内部可以获取到某字段的记录分组统计总数,而无法统计出分组的记录数。
mysql中可以使用sql_calc_found_rows来获取查询的行数,在分页代码中这样写:
select count(*) from `table` where ......;
查出符合条件的记录总数:
select * from `table` where ...... limit m,n;
查询当页要显示的数据 这样的语句可以改成:
select sql_calc_found_rows * from `table` where ...... limit m, n;
select found_rows();
因此,配合mysql自带的sql_calc_found_rows和found_rows()函数:
select sql_calc_found_rows t3.id, a,bunch,of,other,stuff from t1, t2, t3 where(associate t1,t2,and t3 with each other) groupby t3.id limit 10,20select found_rows() as count;
使用以上两条语句求得group by的总记录行数。
补充:
group by 简单用法:
'select column_id,count(*) as count from my_table group by column_id';