Laravel 5.6已添加名为Sub-Query Join的资源。
$latestPosts = DB::table('posts')
->select('user_id', DB::raw('MAX(created_at) as last_post_created_at'))
->where('is_published', true)
->groupBy('user_id');
$users = DB::table('users')
->joinSub($latestPosts, 'latest_posts', function($join) {
$join->on('users.id', '=', 'latest_posts.user_id');
})->get();
问题
我的Laravel项目在5.5版本的生产环境中运行,现在我需要使用子查询联接。在不更新框架版本的情况下如何实现?