Risposte:
Generatore di query:
DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
Eloquente:
SomeModel::select(..)->whereNotIn('book_price', [100,200])->get();
Ho avuto problemi a creare una query secondaria fino a quando non ho aggiunto il metodo ->toArray()
al risultato, spero che sia di aiuto più di uno poiché mi sono divertito a cercare la soluzione.
Esempio
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->select('id_user')->where('id_user', '=', $id)->get()->toArray())
->get();
Il modo dinamico di implementare 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()
Il metodo whereNotIn verifica che il valore della colonna indicata non sia contenuto nell'array specificato:
$users = DB::table('users')
->whereNotIn('id', [1, 2, 3])
->get();
È possibile utilizzare WhereNotIn
nel modo seguente:
$category=DB::table('category')
->whereNotIn('category_id',[14 ,15])
->get();`enter code here`
Puoi fare quanto segue.
DB::table('book_mast')
->selectRaw('book_name,dt_of_pub,pub_lang,no_page,book_price')
->whereNotIn('book_price',[100,200]);
Significa semplicemente che hai una matrice di valori e vuoi record tranne quei valori / record.
puoi semplicemente passare un array nella funzione laravel whereNotIn ().
Con il generatore di query
$users = DB::table('applications')
->whereNotIn('id', [1,3,5])
->get(); //will return without applications which contain this id's
Con eloquente.
$result = ModelClassName::select('your_column_name')->whereNotIn('your_column_name', ['satatus1', 'satatus2']); //return without application which contain this status.
Questa è la mia variante di lavoro per Laravel 7
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->where('id_user', $id)->pluck('id_user')->toArray())
->get();
select
può essere sostituito con un array inget
.