阅读(2964)
赞(7)
Laravel 8 根据子查询进行排序
2021-07-07 10:18:51 更新
此外,查询构建器的 orderBy
函数也支持子查询。我们可以使用此功能根据最后一班航班到达目的地的时间对所有目的地排序。 同样,这可以只对数据库执行单个查询:
return Destination::orderByDesc(
Flight::select('arrived_at')
->whereColumn('destination_id', 'destinations.id')
->orderBy('arrived_at', 'desc')
->limit(1)
)->get();