我怎样才能转换这个:
SELECT max(id), value FROM <table> GROUP BY value;
雄辩?
Thanx提前!!
答案 0 :(得分:0)
这应该有用,你可以在https://laravel.com/docs/5.4/eloquent#introduction
中阅读更多有关雄辩的内容 Table::select(DB::raw('max(id) as maxId'), 'value')->groupBy('value')->get();