ThinkPHP group和count 无法同时使用解决办法

Posted soiq-1123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPHP group和count 无法同时使用解决办法相关的知识,希望对你有一定的参考价值。

$res = M()
  ->table(‘__USER__ u‘)
  ->join(‘LEFT JOIN __USER_INFO__ i ON i.user_id=u.id‘)
  ->where($where)
  ->order($order)
  ->limit($page,$page_num)
  ->field($field)
  ->group(‘u.id‘)
  ->buildSql();
$countres = M()->table($res.‘a‘)-> group(‘id‘)->select();
$list[‘list‘] = $countres;    //列表
$list[‘count‘] = count($countres); //数量












以上是关于ThinkPHP group和count 无法同时使用解决办法的主要内容,如果未能解决你的问题,请参考以下文章

Thinkphp 下 MySQL group by 接count 获得条数方法

Group by、Count 和 Lambda 表达式

Django 相当于 COUNT 和 GROUP BY

Mysql报错注入原理分析(count()rand()group by)

如何从 GROUPs COUNT 中获取 MAX 值

thinkphp rbac 左侧菜单无法显示