有没有一种方法可以通过 orWhereIn 参数一一循环查询生成器?
我想知道是否有一种方法可以循环- > orwhere('parent_id',$ data1,2,3,4,5)
?
$data= data::query()
->where('parent_id', $this->id)
->orWhereIn('parent_id', $data1)
->orWhereIn('parent_id', $data2)
->orWhereIn('parent_id', $data3)
->orWhereIn('parent_id', $data4);
I was wondering if there's a way to loop ->OrWhereIn('parent_id', $data1,2,3,4,5)
?
$data= data::query()
->where('parent_id', $this->id)
->orWhereIn('parent_id', $data1)
->orWhereIn('parent_id', $data2)
->orWhereIn('parent_id', $data3)
->orWhereIn('parent_id', $data4);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许你可以这样:
假设所有这些都不是子数组。如果在尝试此操作之前将它们合并到一个数组中。
Maybe you could something like this:
Provided all of these are not subarrays. If they are merge them into a single array before trying this.
您可以仅使用
whereIn
函数来实现该结果,而不是循环查询,只需循环传递whereIn
函数作为第二个参数的数组即可。或者,如果您想在查询生成器中循环,您可以使用嵌套 where:
结果 SQL:
You can use just
whereIn
function to achieve that result and instead of looping queries, just loop the array you passwhereIn
function as second parameter.Or if you want to loop in query builder you can use nested where:
Result SQL: