gpt4 book ai didi

php - 具有连接表数据的 Laravel selectRaw

转载 作者:可可西里 更新时间:2023-11-01 07:30:03 28 4
gpt4 key购买 nike

我正在使用以下内容对总计列求和:

$hive_count = Hive::where('active','true')
->groupBy('hive_type_id')
->selectRaw('sum(total) as sum, hive_type_id')
->pluck('sum','hive_type_id');

但我不想使用 hive_type_id 作为数组键,而是想从 hive_types 表(“名称”列)访问 hive_type 名称。我试过 hive_type_id.name 但这没有用。

模型:Hive 和 HiveType

感谢您的帮助。

最佳答案

I would like to access the hive_type name from the hive_types table (column 'name').

您必须在查询中加入表 hive_types,以便可以访问 name:

$hive_count = DB::table('hives')
->where('active','true')
->join('hive_types', 'hives.hive_type_id', '=', 'hive_types.id')
->groupBy('hive_type_id','hive_types.name')
->selectRaw('sum(total) as sum, hive_types.name as name')
->pluck('sum','name');

关于php - 具有连接表数据的 Laravel selectRaw,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40964201/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com