SELECT * FROM(SELECT * FROM table ORDER BY time DESC)AS t GROUP BY numbers;
答案 0 :(得分:0)
对于转换子查询,您可以在select
中使用DB:rawModel::select(DB::raw("Your query") as t)->groupBy('number')
答案 1 :(得分:0)
return
答案 2 :(得分:0)
这是一个简单的方法:
DB::table('table')
->orderBy('time')
->groupBy('numbers')
->get();