Laravel Eloquent“ ไม่ได้อยู่ที่ไหน”


156

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

ตอนนี้ฉันต้องการแปลงข้อความค้นหานี้เป็นคำพูดที่คมคาย

คำตอบ:


334

ตัวสร้างแบบสอบถาม:

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

ฝีปาก:

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

29
selectสามารถแทนที่ด้วยอาร์เรย์ในget.
Marwelln

7
SO เร็วกว่าการค้นหาในเอกสารทางการ!
Fer García

ตอบได้ดี มันเป็นประโยชน์มากสำหรับฉัน
Yagnesh bhalala

@Marwelln ใช่ แต่จะไม่ทำงานกับแบบสอบถามที่ซับซ้อน เช่นด้วยวิธีการ addSelect
Orange-Man

27

คุณสามารถใช้WhereNotInด้วยวิธีต่อไปนี้:

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

สิ่งนี้จะส่งคืนคอลเล็กชันของRecordพร้อมช่องเฉพาะ


9

ฉันมีปัญหาในการสร้างแบบสอบถามย่อยจนกว่าฉันจะเพิ่มวิธีการ->toArray()ลงในผลลัพธ์ฉันหวังว่ามันจะช่วยได้มากกว่าหนึ่งข้อเนื่องจากฉันมีช่วงเวลาที่ดีในการค้นหาวิธีแก้ปัญหา

ตัวอย่าง

DB::table('user')                 
  ->select('id','name')
  ->whereNotIn('id', DB::table('curses')->select('id_user')->where('id_user', '=', $id)->get()->toArray())
  ->get();

4

วิธีการใช้งานแบบไดนามิก whereNotIn:

 $users = User::where('status',0)->get();
    foreach ($users as $user) {
                $data[] = $user->id;
            }
    $available = User::orderBy('name', 'DEC')->whereNotIn('id', $data)->get();

2
ตัวอย่างของคุณซับซ้อนเกินไป User::orderBy('name', 'DESC')->where('status', '!=',0)->get()
Adsy2010



2

คุณสามารถใช้ตัวอย่างนี้เพื่อเรียกตำแหน่งที่ไม่อยู่ในแบบไดนามิก

$ user = User :: โดยที่ ('company_id', '=', 1) -> เลือก ('id) -> get () -> toArray ();

$ otherCompany = ผู้ใช้ :: whereNotIn ('id', $ user) -> get ();

0

คุณสามารถทำดังต่อไปนี้

DB::table('book_mast') 
->selectRaw('book_name,dt_of_pub,pub_lang,no_page,book_price')  
->whereNotIn('book_price',[100,200]);

0

นั่นหมายความว่าคุณมีอาร์เรย์ของค่าและคุณต้องการบันทึกยกเว้นค่า / ระเบียนนั้น

คุณสามารถส่งอาร์เรย์ไปยังฟังก์ชัน 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.

0

นี่คือตัวแปรการทำงานของฉันสำหรับ Laravel 7

DB::table('user')                 
  ->select('id','name')
  ->whereNotIn('id', DB::table('curses')->where('id_user', $id)->pluck('id_user')->toArray())
  ->get();
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.