Laravel 5.1 中带有 AND OR 的 WHERE 子句?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/31985722/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-14 12:10:35 来源:igfitidea点击:
WHERE clause with AND OR in Laravel 5.1?
提问by Amrinder Singh
i am trying to use Where clause in Laravel 5.1 with or And or conditions, here is my requirement:
我想在 Laravel 5.1 中使用 Where 子句与 or And or 条件,这是我的要求:
->WHERE (request_id=1) and (sender_id=11 or receiver_id=11)
how to use the above clause in Laravel 5.
如何在 Laravel 5 中使用上述条款。
Your help would be really appreciated :)
您的帮助将不胜感激:)
回答by MstfAsan
DB::table('yourTable')
->where('request_id', '=', '1')
->where(function($query)
{
$query->where('sender_id', '=', 11)
->orWhere('receiver_id', '=', '11');
})
->get();