本文介绍了我可以在多个条件中执行Model-> where('id',ARRAY)吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
标题说明了一切.
我知道我可以做到这一点:
I get that I can do this :
DB::table('items')->where('something', 'value')->get()
但是我想检查多个值的where条件,如下所示:
But what I want to check the where condition for multiple values like so:
DB::table('items')->where('something', 'array_of_value')->get()
有一种简单的方法吗?
推荐答案
有 whereIn()
:
$items = DB::table('items')->whereIn('id', [1, 2, 3])->get();
这篇关于我可以在多个条件中执行Model-> where('id',ARRAY)吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!