回答:
クエリビルダー:
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();
次のことができます。
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();
select
の配列に置き換えることができますget
。