本文主要是介绍ThinkPHP5 三表联合查询,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用ThinkPHP5 查询构建起进行三表联合查询
$account_info = Db::name('third_party_tasks')->alias('a')->join('third_party_taskgroups b','a.taskGroupId = b.taskGroupId')->join('third_party_accounts c','b.account_id = c.id')->field('c.access_token')->where(['a.taskId' => $taskId])->select();
具体讲解可以参考ThinkPHP5.0完全开发手册https://www.kancloud.cn/manual/thinkphp5/118083
这篇关于ThinkPHP5 三表联合查询的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!