我有三个这样的表:
Items table
id | name
1 | Laptop
2 | Computer
3 | Tv
Production table
id | date
1 | 2021-10-01
2 | 2021-10-03
3 | 2021-10-30
Detail table
id | production_id| item_id |qty
1 | 1 | 1 | 5
2 | 1 | 3 | 10
3 | 2 | 1 |2
4 | 2 | 2 |3
5 | 2 | 3 |23
我想要达到的是这样的:
(where Production dateBetween this date and that date)
Items |Sum qty
Laptop | 7
Computer | 3
Tv | 33
如何用雄辩的方式做到这一点?
应该使用hasManyThrough关系吗?
谢谢你的帮助。
因为这是一个连接问题,所以我不会使用标准关系。相反,让mysql
通过在ORM
中创建一个自定义查询来解决这个问题。
策略是连接所有行,按产品名称分组。对数量求和,并为日期创建where条件。
$items = Item::select('name', DB::raw('SUM(details.qty) as quantity'))
->join('details', 'items.id', '=', 'details.item_id')
->join('productions', 'productions.id', '=', 'details.production_id')
->whereBetween('productions.date', [now()->subMonth(), now())
->groupBy('details.name')
->get();
你可以像这样循环数据
foreach ($items as $item) {
$item->name;
$item->quantity;
}