laravel eloquent ORM
ฉันมีปัญหาในการเขียนแบบสอบถามใน
คำถามของฉันคือ
SELECT book_name,dt_of_pub,pub_lang,no_page,book_price
FROM book_mast
WHERE book_price NOT IN (100,200);
ตอนนี้ฉันต้องการแปลงข้อความค้นหานี้เป็นคำพูดที่คมคาย
laravel eloquent ORM
ฉันมีปัญหาในการเขียนแบบสอบถามใน
คำถามของฉันคือ
SELECT book_name,dt_of_pub,pub_lang,no_page,book_price
FROM book_mast
WHERE book_price NOT IN (100,200);
ตอนนี้ฉันต้องการแปลงข้อความค้นหานี้เป็นคำพูดที่คมคาย
คำตอบ:
ตัวสร้างแบบสอบถาม:
DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
ฝีปาก:
SomeModel::select(..)->whereNotIn('book_price', [100,200])->get();
คุณสามารถใช้WhereNotInด้วยวิธีต่อไปนี้:
ModelName::whereNotIn('book_price', [100,200])->get(['field_name1','field_name2']);
สิ่งนี้จะส่งคืนคอลเล็กชันของRecordพร้อมช่องเฉพาะ
ฉันมีปัญหาในการสร้างแบบสอบถามย่อยจนกว่าฉันจะเพิ่มวิธีการ->toArray()
ลงในผลลัพธ์ฉันหวังว่ามันจะช่วยได้มากกว่าหนึ่งข้อเนื่องจากฉันมีช่วงเวลาที่ดีในการค้นหาวิธีแก้ปัญหา
ตัวอย่าง
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->select('id_user')->where('id_user', '=', $id)->get()->toArray())
->get();
วิธีการใช้งานแบบไดนามิก 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()
เมธอด whereNotIn ตรวจสอบว่าค่าของคอลัมน์ที่ระบุไม่มีอยู่ในอาร์เรย์ที่กำหนด:
$users = DB::table('users')
->whereNotIn('id', [1, 2, 3])
->get();
คุณสามารถใช้WhereNotIn
วิธีต่อไปนี้:
$category=DB::table('category')
->whereNotIn('category_id',[14 ,15])
->get();`enter code here`
คุณสามารถใช้ตัวอย่างนี้เพื่อเรียกตำแหน่งที่ไม่อยู่ในแบบไดนามิก
$ user = User :: โดยที่ ('company_id', '=', 1) -> เลือก ('id) -> get () -> toArray (); $ otherCompany = ผู้ใช้ :: whereNotIn ('id', $ user) -> get ();
คุณสามารถทำดังต่อไปนี้
DB::table('book_mast')
->selectRaw('book_name,dt_of_pub,pub_lang,no_page,book_price')
->whereNotIn('book_price',[100,200]);
นั่นหมายความว่าคุณมีอาร์เรย์ของค่าและคุณต้องการบันทึกยกเว้นค่า / ระเบียนนั้น
คุณสามารถส่งอาร์เรย์ไปยังฟังก์ชัน whereNotIn () laravel
ด้วยตัวสร้างแบบสอบถาม
$users = DB::table('applications')
->whereNotIn('id', [1,3,5])
->get(); //will return without applications which contain this id's
ด้วยฝีปาก.
$result = ModelClassName::select('your_column_name')->whereNotIn('your_column_name', ['satatus1', 'satatus2']); //return without application which contain this status.
นี่คือตัวแปรการทำงานของฉันสำหรับ Laravel 7
DB::table('user')
->select('id','name')
->whereNotIn('id', DB::table('curses')->where('id_user', $id)->pluck('id_user')->toArray())
->get();
select
สามารถแทนที่ด้วยอาร์เรย์ในget
.