在Laravel 5的Eloquent模型中正确使用orderBy()

时间:2015-06-24 07:02:01

标签: php mysql model eloquent laravel-5

我的查询如下。

@xset s off
@xset -dpms
@xset s noblank
@epiphany-browser http://www.google.de

但是orderBy()子句无法正常工作。如果我删除了DB::statement('SET GLOBAL group_concat_max_len = 1000000'); return DB::table('reports') ->select('reports.report_date',DB::raw("group_concat(reports.report_order_id) as order_id")) ->leftJoin('sources', 'reports.report_source_id', '=', 'sources.id') ->whereBetween('reports.report_date',[$date_from,$date_to]) ->groupBy('reports.report_date') ->orderBy('sources.id','ASC') ->get(); ,那么它正常运行。

谁能说出问题在哪里?

0 个答案:

没有答案