$modelGoodsSellRecordData = $modelGoodsIndexSellRecord->order($order)->paginate([ 'list_rows'=> $limit, 'page' => $page, ]); 根据goods_id分组并求出每组的数量
时间: 2024-03-17 15:40:52 浏览: 88
数据记录(DataRecord)
可以使用ThinkPHP框架提供的group方法来实现根据goods_id分组,并且使用count方法来统计每组的数量。具体代码如下:
```
$modelGoodsSellRecordData = $modelGoodsIndexSellRecord->field('goods_id, count(*) as count')->group('goods_id')->order($order)->paginate([
'list_rows'=> $limit,
'page' => $page,
]);
```
这样可以得到一个以goods_id为键,数量为值的数组。
阅读全文