laravel orm 关联条件查询代码
吾爱主题
阅读:115
2021-09-09 16:24:00
评论:0
如下所示:
?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
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。