如下所示:
1
2
3
4
5
6
7
|
public function a()
{
return $this ->belongsTo( 'App\Models\a' , 'aid' );
}
$model = $this ->whereHas( 'a' , function ( $query ) use ( $search ) {
$query ->where( 'username' , 'like' , '%' . $search [ 'username' ] . '%' );
})->with([ 'a:id,username' ])->get();
|
laravel orm 关联条件查询
sql 语句:
1
|
select a.id,a.username,b.* from b left join a on a.id = b.aid where a.username like "%username%" ;
|
以上这篇laravel orm 关联条件查询代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/weixin_40076986/article/details/79815051