Câu trả lời:
Trình tạo truy vấn:
DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
Hiệu quả:
SomeModel::select(..)->whereNotIn('book_price', [100,200])->get();
Tôi gặp vấn đề khi thực hiện một truy vấn phụ cho đến khi tôi thêm phương thức ->toArray()
vào kết quả, tôi hy vọng nó sẽ giúp nhiều hơn một vì tôi đã có thời gian tìm kiếm giải pháp.
Thí dụ
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->select('id_user')->where('id_user', '=', $id)->get()->toArray())
->get();
Cách năng động để thực hiện 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()
Phương thức whereNotIn xác minh rằng giá trị của cột đã cho không được chứa trong mảng đã cho:
$users = DB::table('users')
->whereNotIn('id', [1, 2, 3])
->get();
Bạn có thể sử dụng WhereNotIn
theo cách sau:
$category=DB::table('category')
->whereNotIn('category_id',[14 ,15])
->get();`enter code here`
Bạn có thể làm như sau.
DB::table('book_mast')
->selectRaw('book_name,dt_of_pub,pub_lang,no_page,book_price')
->whereNotIn('book_price',[100,200]);
Nó đơn giản có nghĩa là bạn có một mảng các giá trị và bạn muốn ghi lại ngoại trừ các giá trị / bản ghi đó.
bạn có thể chỉ cần truyền một mảng vào hàm laravel whereNotIn ().
Với trình tạo truy vấn
$users = DB::table('applications')
->whereNotIn('id', [1,3,5])
->get(); //will return without applications which contain this id's
Với tài hùng biện.
$result = ModelClassName::select('your_column_name')->whereNotIn('your_column_name', ['satatus1', 'satatus2']); //return without application which contain this status.
Đây là biến thể làm việc của tôi cho Laravel 7
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->where('id_user', $id)->pluck('id_user')->toArray())
->get();
select
có thể được thay thế bằng một mảng trongget
.