Odpowiedzi:
Konstruktor zapytań:
DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
Wymowny:
SomeModel::select(..)->whereNotIn('book_price', [100,200])->get();
Miałem problemy z wykonaniem zapytania podrzędnego, dopóki nie dodałem metody ->toArray()
do wyniku, mam nadzieję, że pomoże to więcej niż jeden, ponieważ dobrze się bawiłem szukając rozwiązania.
Przykład
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->select('id_user')->where('id_user', '=', $id)->get()->toArray())
->get();
Dynamiczny sposób implementacji, gdzieNotIn:
$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()
Metoda whereNotIn sprawdza, czy podana wartość kolumny nie jest zawarta w podanej tablicy:
$users = DB::table('users')
->whereNotIn('id', [1, 2, 3])
->get();
Możesz użyć WhereNotIn
w następujący sposób:
$category=DB::table('category')
->whereNotIn('category_id',[14 ,15])
->get();`enter code here`
Możesz śledzić.
DB::table('book_mast')
->selectRaw('book_name,dt_of_pub,pub_lang,no_page,book_price')
->whereNotIn('book_price',[100,200]);
Oznacza to po prostu, że masz tablicę wartości i chcesz rejestrować z wyjątkiem tych wartości / rekordów.
możesz po prostu przekazać tablicę do funkcji laravel whereNotIn ().
Z konstruktorem zapytań
$users = DB::table('applications')
->whereNotIn('id', [1,3,5])
->get(); //will return without applications which contain this id's
Z elokwentnym.
$result = ModelClassName::select('your_column_name')->whereNotIn('your_column_name', ['satatus1', 'satatus2']); //return without application which contain this status.
To jest mój wariant roboczy dla Laravel 7
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->where('id_user', $id)->pluck('id_user')->toArray())
->get();
select
można zastąpić tablicą w formacieget
.