Yanıtlar:
Sorgu oluşturucu:
DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
Etkili:
SomeModel::select(..)->whereNotIn('book_price', [100,200])->get();
->toArray()
Sonuca yöntemi ekleyene kadar bir alt sorgu yapmakta sorun yaşadım , umarım çözüm aramak için iyi bir zaman geçirdim çünkü birden fazla yardımcı olur.
Misal
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->select('id_user')->where('id_user', '=', $id)->get()->toArray())
->get();
Where'nin dinamik uygulama şekli
$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 yöntemi, verilen sütunun değerinin belirtilen dizide bulunmadığını doğrular:
$users = DB::table('users')
->whereNotIn('id', [1, 2, 3])
->get();
WhereNotIn
Aşağıdaki şekilde kullanabilirsiniz :
$category=DB::table('category')
->whereNotIn('category_id',[14 ,15])
->get();`enter code here`
Aşağıdakileri yapabilirsiniz.
DB::table('book_mast')
->selectRaw('book_name,dt_of_pub,pub_lang,no_page,book_price')
->whereNotIn('book_price',[100,200]);
Basitçe, bir değerler diziniz olduğu ve bu değerler / kayıtlar dışında kayıt istediğiniz anlamına gelir.
bir diziyi whereNotIn () laravel işlevine geçirebilirsiniz.
Sorgu oluşturucu ile
$users = DB::table('applications')
->whereNotIn('id', [1,3,5])
->get(); //will return without applications which contain this id's
Etkili bir şekilde.
$result = ModelClassName::select('your_column_name')->whereNotIn('your_column_name', ['satatus1', 'satatus2']); //return without application which contain this status.
Bu Laravel 7 için çalışan varyantım
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->where('id_user', $id)->pluck('id_user')->toArray())
->get();
select
içinde bir dizi ile değiştirilebilirget
.