วิธีสร้างแบบสอบถาม Laravel Eloquent“ IN”


113

ฉันต้องการสร้างแบบสอบถามใน Laravel Eloquent เหมือนที่นี่แบบสอบถาม MySQL ดิบ

SELECT  * from  exampleTbl where id in(1,2,3,4)

ฉันได้ลองสิ่งนี้ใน Laravel Eloquent แต่ไม่ได้ผล

DB::where("id IN(23,25)")->get()

คำตอบ:


244

นี่คือวิธีที่คุณทำใน Eloquent

$users = User::whereIn('id', array(1, 2, 3))->get();

และถ้าคุณใช้ Query builder แล้ว:

$users = DB::table('users')->whereIn('id', array(1, 2, 3))->get();

15

หากคุณกำลังใช้ Query builder คุณอาจใช้ระเบิด

DB::table(Newsletter Subscription)
->select('*')
->whereIn('id', $send_users_list)
->get()

หากคุณกำลังทำงานกับ Eloquent คุณสามารถใช้ดังต่อไปนี้

$sendUsersList = Newsletter Subscription:: select ('*')
                ->whereIn('id', $send_users_list)
                ->get();

7

ไวยากรณ์:

$data = Model::whereIn('field_name', [1, 2, 3])->get();

ใช้สำหรับรุ่นผู้ใช้

$usersList = Users::whereIn('id', [1, 2, 3])->get();
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.