Laravel Eloquent “WHERE NOT IN”


143

Ho problemi a scrivere una query laravel eloquent ORM.

la mia domanda è

SELECT book_name,dt_of_pub,pub_lang,no_page,book_price  
FROM book_mast        
WHERE book_price NOT IN (100,200);

Ora voglio convertire questa query in laravel eloquent.

Risposte:


312

Generatore di query:

DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();

Eloquente:

SomeModel::select(..)->whereNotIn('book_price', [100,200])->get();

27
selectpuò essere sostituito con un array in get.
Marwelln,

6
SO è più veloce della ricerca nella documentazione ufficiale!
Fer García,

bella risposta. mi è molto utile.
Yagnesh bhalala,

@ Marwelln, sì, ma non funzionerà con query complesse. Ad esempio con il metodo addSelect.
Orange-Man,

26

Puoi usare WhereNotIn anche nel seguente modo:

ModelName::whereNotIn('book_price', [100,200])->get(['field_name1','field_name2']);

Ciò restituirà la raccolta di Record con campi specifici


8

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();

4

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();

1
Il tuo esempio è troppo complesso. User::orderBy('name', 'DESC')->where('status', '!=',0)->get()
Adsy2010,


2

È possibile utilizzare WhereNotInnel modo seguente:

$category=DB::table('category')
          ->whereNotIn('category_id',[14 ,15])
          ->get();`enter code here`

2

Puoi usare questo esempio per chiamare dinamicamente Where NOT IN

$ user = User :: where ('company_id', '=', 1) -> select ('id) -> get () -> toArray ();

$ otherCompany = User :: whereNotIn ('id', $ user) -> get ();

0

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]);

0

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.

0

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();
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.