Answers:
查询生成器:
DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
雄辩:
SomeModel::select(..)->whereNotIn('book_price', [100,200])->get();
在将子方法添加->toArray()
到结果中之前,我在进行子查询时遇到了问题,我希望它能对很多人有所帮助,因为我有很多时间在寻找解决方案。
例
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->select('id_user')->where('id_user', '=', $id)->get()->toArray())
->get();
实现whereNotIn的动态方式:
$users = User::where('status',0)->get();
foreach ($users as $user) {
$data[] = $user->id;
}
$available = User::orderBy('name', 'DEC')->whereNotIn('id', $data)->get();
User::orderBy('name', 'DESC')->where('status', '!=',0)->get()
whereNotIn方法验证给定数组中是否不包含给定列的值:
$users = DB::table('users')
->whereNotIn('id', [1, 2, 3])
->get();
您可以通过WhereNotIn
以下方式使用:
$category=DB::table('category')
->whereNotIn('category_id',[14 ,15])
->get();`enter code here`
它只是意味着您有一个值数组,并且想要记录,但值/记录除外。
您可以简单地将数组传递到whereNotIn()laravel函数中。
使用查询生成器
$users = DB::table('applications')
->whereNotIn('id', [1,3,5])
->get(); //will return without applications which contain this id's
雄辩。
$result = ModelClassName::select('your_column_name')->whereNotIn('your_column_name', ['satatus1', 'satatus2']); //return without application which contain this status.
这是我的Laravel 7工作版本
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->where('id_user', $id)->pluck('id_user')->toArray())
->get();
select
可以用中的数组替换get
。