目前我这样做是为了获取分支表数据:
$smlist = SM::where('branch_id','=',$branchid)->select('id','name','branch_id')->get();
foreach ($smlist as $sm) {
$sm->b = SM::find($sm->id)->branch;
}
其中branch_id是外键,我也在SM表中设置了belongsTo 这对我来说很好,但我找到了在单个查询中使用它的方法。 如何使用单个查询获取此数据?
答案 0 :(得分:1)
您可以使用with()
eager load {{3}}建立您的关系。
$smlist = SM::with('branch')
->where('branch_id','=',$branchid)
->select('id','name','branch_id')
->get();
答案 1 :(得分:0)
您必须使用联接,您可以在此处找到文档http://laravel.com/docs/4.2/queries#joins
我认为你可以使用这样的东西:
SM::->join('branch', 'branch.id', '=', 'sm.branch_id')
.where('sm.branch_id','=',$branchid)
->select('sm.id','sm.name','sm.branch_id','branch.name')
->get();