本文介绍了Group_concat - laravel 雄辩的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
请我想在使用 eloquent 而不是原始查询的查询中使用 group_concat.
please I want to use group_concat in a query using eloquent and not raw queries.
这是我尝试执行但对我不起作用的代码:
here is the code which i tried to execute and did't work for me:
commands::join('products', 'products.id', '=','commands.idproduct')
->select('commands.username','**group_concat(products.name)**')
->group by ('commands. username')
->get();
提前致谢:)
推荐答案
我刚用过:
使用数据库;
在我的查询中我使用了
DB::raw('group_concat(products.name)')
这篇关于Group_concat - laravel 雄辩的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!