如何在Laravel中分组多列?
我试过这个代码:
我试过这个代码:
$routes = DB::table('route') ->groupBy('rte_origin') ->groupBy('rte_destination') ->get();
但这不行.
解决方法
你试过了吗:
$routes = DB::table('route') ->groupBy('rte_origin','rte_destination') ->get();
现在无法在这里测试,但API说groupBy()接受一个数组.
作为参考,请访问:
> Laravel 5.0:https://github.com/laravel/framework/blob/5.0/src/Illuminate/Database/Query/Builder.php#L1037
> Laravel 4.2:https://github.com/laravel/framework/blob/4.2/src/Illuminate/Database/Query/Builder.php#L1017