查询生成器:
DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
雄辩:
SomeModel::select(..)->whereNotIn('book_price', [100,200])->get();
您也可以通过以下方式使用 WhereNotIn:
ModelName::whereNotIn('book_price', [100,200])->get(['field_name1','field_name2']);
这将返回具有特定字段的 Record 集合
在我将方法 ->toArray()
添加到结果之前,我在进行子查询时遇到了问题,我希望它能帮助不止一个,因为我在寻找解决方案的过程中度过了愉快的时光。
例子
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->select('id_user')->where('id_user', '=', $id)->get()->toArray())
->get();
DB::table('curses')->select('id_user')->where('id_user', '=', $id)->get()->toArray()
正在执行完整的数据库查询并检索结果。在这种情况下,对数据库有 2 个 SQL 查询调用。建议改用 ->whereNotIn('id', function($q){ $q->table('curses')->select('id_user')->where('id_user', '=', $id); })
。
查询生成器:
DB::table('book_mast')
->select('book_name','dt_of_pub','pub_lang','no_page','book_price')
->whereNotIn('book_price', [100,200])->get();
雄辩:
BookMast::select('book_name','dt_of_pub','pub_lang','no_page','book_price')
->whereNotIn('book_price', [100,200])->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()
您可以使用此示例动态调用 Where NOT IN
$user = User::where('company_id', '=', 1)->select('id)->get()->toArray(); $otherCompany = User::whereNotIn('id', $user)->get();
您可以通过以下方式使用 WhereNotIn
:
$category=DB::table('category')
->whereNotIn('category_id',[14 ,15])
->get();`enter code here`
您可以执行以下操作。
DB::table('book_mast')
->selectRaw('book_name,dt_of_pub,pub_lang,no_page,book_price')
->whereNotIn('book_price',[100,200]);
它只是意味着您有一个值数组,并且您想要记录除值/记录之外的记录。
您可以简单地将数组传递给 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();
或者在这里尝试在 laravel 中采摘
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->where('id_user', '=', $id)->pluck('user_id'))
->get();
$created_po = array();
$challan = modelname::where('fieldname','!=', 0)->get();
// dd($challan);
foreach ($challan as $rec){
$created_po[] = array_push($created_po,$rec->fieldname);
}
$data = modelname::whereNotIn('fieldname',$created_po)->orderBy('fieldname','desc')->with('modelfunction')->get();
select
可以替换为get
中的数组。