我的查询在此where子句中只能正常工作。请告诉我在Laravel中将如何查询构建器查询,等同于该查询
WHERE (interest_request.sender_id = 6 or interest_request.to_user_id = 6)
AND interest_request.interest_status =2
and profiles.profile_id not in (6)
我正在使用以下查询生成器,但无法正常工作
where('to_user_id',$my_profile_id)->orwhere
('sender_id',$my_profile_id)->where('interest_status','2')
->whereNotIn('profiles.profile_id', $my_profile_id)
答案 0 :(得分:0)
在特定情况下,您必须使用嵌套的where
子句:
->where(function ($query) use ($my_profile_id) {
$query->where('to_user_id', $my_profile_id)
->orWhere('sender_id', $my_profile_id);
})
->where('interest_status', 2)
->where('profile_id', '!=', $my_profile_id)
如果列表中只有一个ID,则无需使用whereIn
(或whereNotIn
)查询。
答案 1 :(得分:0)
我认为它将是sql中的以下内容:
WHERE to_user_id = $my_profile_id
OR sender_id = $my_profile_id
AND interest_status = 2
AND profiles.profile_id NOT IN ($my_profile_id)
当我使用orwhere()语句时,我使用回调函数:
where(function($query) {$query->something})
->orwhere(function($query) {$query->otherOptions})