วิธีการสร้างหลาย ๆ คำสั่งที่ใช้ Laravel Eloquent ได้อย่างไร


405

ฉันใช้ตัวสร้างแบบสอบถาม Laravel Eloquent และฉันมีแบบสอบถามที่ฉันต้องการใช้WHEREประโยคในหลายเงื่อนไข มันใช้งานได้ แต่มันก็ไม่ได้สวยงาม

ตัวอย่าง:

$results = User::where('this', '=', 1)
    ->where('that', '=', 1)
    ->where('this_too', '=', 1)
    ->where('that_too', '=', 1)
    ->where('this_as_well', '=', 1)
    ->where('that_as_well', '=', 1)
    ->where('this_one_too', '=', 1)
    ->where('that_one_too', '=', 1)
    ->where('this_one_as_well', '=', 1)
    ->where('that_one_as_well', '=', 1)
    ->get();

มีวิธีที่ดีกว่าในการทำเช่นนี้หรือฉันควรติดกับวิธีนี้


4
มีความเป็นไปได้มากมายในแง่ของวิธีการที่จะทำให้เป็นเรื่องง่าย แต่ต้องใช้รหัสที่สมจริงกว่านี้ คุณสามารถปรับปรุงรหัสให้สมจริงมากขึ้นได้ไหม? ตัวอย่างเช่นมีบางครั้งที่->where(...)สามารถแทนที่การ->whereIn(...)โทรหลายสายด้วยการโทรและอื่น
โจนาธานมาร์เวนส์

2
ทางออกของ @Jarek Tkaczyk ควรเป็นคำตอบฉันเห็นด้วย แต่ฉันต้องการรหัสของคุณเช่นสคริปต์ผู้สร้างเพื่อความเข้าใจและการบำรุงรักษา
Tiefan Ju

คำตอบ:


618

ในLaravel 5.3 (และยังคงเป็นจริง ณ 7.x ) คุณสามารถใช้ wheres ละเอียดที่ส่งผ่านเป็นอาร์เรย์ได้มากขึ้น:

$query->where([
    ['column_1', '=', 'value_1'],
    ['column_2', '<>', 'value_2'],
    [COLUMN, OPERATOR, VALUE],
    ...
])

โดยส่วนตัวฉันไม่ได้พบกรณีการใช้งานสำหรับสิ่งนี้ผ่านการwhereโทรหลายครั้งแต่คุณสามารถใช้งานได้จริง

ตั้งแต่มิถุนายน 2014 คุณสามารถส่งผ่านอาร์เรย์ไปยัง where

ตราบใดที่คุณต้องการให้ตัวดำเนินการwheresใช้งานทั้งหมดandคุณสามารถจัดกลุ่มได้ด้วยวิธีนี้:

$matchThese = ['field' => 'value', 'another_field' => 'another_value', ...];

// if you need another group of wheres as an alternative:
$orThose = ['yet_another_field' => 'yet_another_value', ...];

แล้ว:

$results = User::where($matchThese)->get();

// with another group
$results = User::where($matchThese)
    ->orWhere($orThose)
    ->get();

ด้านบนจะส่งผลให้แบบสอบถามดังกล่าว:

SELECT * FROM users
  WHERE (field = value AND another_field = another_value AND ...)
  OR (yet_another_field = yet_another_value AND ...)

8
คุณจะระบุผู้ประกอบการได้อย่างไร
Styphon

9
@Styphon คุณทำไม่ได้ =ขณะนี้ก็ทำงานเฉพาะกับ
Jarek Tkaczyk

5
@Styphon และสิ่งที่ถ้าผมต้องการที่จะทำให้: WHERE (a IS NOT NULL AND b=1) OR (a IS NULL AND b=2);?
alexglue

9
นอกจากนี้คุณยังสามารถผ่านเงื่อนไขต่างๆดังนี้:$users = DB::table('users')->where([ ['status', '=', '1'], ['subscribed', '<>', '1'], ])->get();
เลขศูนย์และ

3
@jarek: ฉันจะรวมwhereNotInตามคำตอบของคุณด้วยการมีหน่วยงานอื่นได้whereอย่างไร
Kalanka

93

ขอบเขตแบบสอบถามอาจช่วยให้คุณสามารถให้โค้ดอ่านง่ายขึ้น

http://laravel.com/docs/eloquent#query-scopes

อัปเดตคำตอบนี้ด้วยตัวอย่าง:

ในแบบจำลองของคุณให้สร้างวิธีขอบเขตดังนี้:

public function scopeActive($query)
{
    return $query->where('active', '=', 1);
}

public function scopeThat($query)
{
    return $query->where('that', '=', 1);
}

จากนั้นคุณสามารถเรียกขอบเขตนี้ในขณะที่สร้างคิวรีของคุณ:

$users = User::active()->that()->get();

แนวปฏิบัติที่ดีที่สุดสำหรับเงื่อนไขเช่นนี้คือ query-> where ('start_date'> $ startDate) มันยังคงโอเคที่จะใช้ Scopes หรือไม่
Buwaneka Kalansuriya

72

คุณสามารถใช้แบบสอบถามย่อยในฟังก์ชั่นที่ไม่ระบุชื่อเช่นนี้:

 $results = User::where('this', '=', 1)
            ->where('that', '=', 1)
            ->where(function($query) {
                /** @var $query Illuminate\Database\Query\Builder  */
                return $query->where('this_too', 'LIKE', '%fake%')
                    ->orWhere('that_too', '=', 1);
            })
            ->get();

43

ในกรณีนี้คุณสามารถใช้สิ่งนี้:

User::where('this', '=', 1)
    ->whereNotNull('created_at')
    ->whereNotNull('updated_at')
    ->where(function($query){
        return $query
        ->whereNull('alias')
        ->orWhere('alias', '=', 'admin');
    });

ควรให้คำค้นหาเช่น:

SELECT * FROM `user` 
WHERE `user`.`this` = 1 
    AND `user`.`created_at` IS NOT NULL 
    AND `user`.`updated_at` IS NOT NULL 
    AND (`alias` IS NULL OR `alias` = 'admin')

36

เงื่อนไขการใช้อาเรย์:

$users = User::where([
       'column1' => value1,
       'column2' => value2,
       'column3' => value3
])->get();

จะสร้างข้อความค้นหาอย่างร้อง:

SELECT * FROM TABLE WHERE column1=value1 and column2=value2 and column3=value3

เงื่อนไขการใช้ฟังก์ชั่น Antonymous:

$users = User::where('column1', '=', value1)
               ->where(function($query) use ($variable1,$variable2){
                    $query->where('column2','=',$variable1)
                   ->orWhere('column3','=',$variable2);
               })
              ->where(function($query2) use ($variable1,$variable2){
                    $query2->where('column4','=',$variable1)
                   ->where('column5','=',$variable2);
              })->get();

จะสร้างข้อความค้นหาอย่างร้อง:

SELECT * FROM TABLE WHERE column1=value1 and (column2=value2 or column3=value3) and (column4=value4 and column5=value5)

12

หลายที่ข้อ

    $query=DB::table('users')
        ->whereRaw("users.id BETWEEN 1003 AND 1004")
        ->whereNotIn('users.id', [1005,1006,1007])
        ->whereIn('users.id',  [1008,1009,1010]);
    $query->where(function($query2) use ($value)
    {
        $query2->where('user_type', 2)
            ->orWhere('value', $value);
    });

   if ($user == 'admin'){
        $query->where('users.user_name', $user);
    }

จนได้รับผลลัพธ์

    $result = $query->get();

9

whereColumnวิธีการสามารถส่งผ่านอาร์เรย์ของเงื่อนไขหลาย เงื่อนไขเหล่านี้จะเข้าร่วมโดยใช้andโอเปอเรเตอร์

ตัวอย่าง:

$users = DB::table('users')
            ->whereColumn([
                ['first_name', '=', 'last_name'],
                ['updated_at', '>', 'created_at']
            ])->get();

$users = User::whereColumn([
                ['first_name', '=', 'last_name'],
                ['updated_at', '>', 'created_at']
            ])->get();

สำหรับข้อมูลเพิ่มเติมตรวจสอบส่วนนี้ของเอกสารประกอบ https://laravel.com/docs/5.4/queries#where-clauses


8
Model::where('column_1','=','value_1')->where('column_2 ','=','value_2')->get();

หรือ

// If you are looking for equal value then no need to add =
Model::where('column_1','value_1')->where('column_2','value_2')->get();

หรือ

Model::where(['column_1' => 'value_1','column_2' => 'value_2'])->get();

5

ตรวจสอบให้แน่ใจว่าใช้ตัวกรองอื่น ๆ กับแบบสอบถามย่อยมิฉะนั้นหรืออาจรวบรวมระเบียนทั้งหมด

$query = Activity::whereNotNull('id');
$count = 0;
foreach ($this->Reporter()->get() as $service) {
        $condition = ($count == 0) ? "where" : "orWhere";
        $query->$condition(function ($query) use ($service) {
            $query->where('branch_id', '=', $service->branch_id)
                  ->where('activity_type_id', '=', $service->activity_type_id)
                  ->whereBetween('activity_date_time', [$this->start_date, $this->end_date]);
        });
    $count++;
}
return $query->get();

ขอบคุณที่เพิ่ม 'use ($ service)' คำตอบของ Juljan เกือบจะเป็นสิ่งที่ฉันต้องการ ความคิดเห็นของคุณช่วยฉันส่งข้อความค้นหาของฉันไปยังข้อความค้นหา
Elliot Robert

5
$projects = DB::table('projects')->where([['title','like','%'.$input.'%'],
    ['status','<>','Pending'],
    ['status','<>','Not Available']])
->orwhere([['owner', 'like', '%'.$input.'%'],
    ['status','<>','Pending'],
    ['status','<>','Not Available']])->get();

3

หากไม่มีตัวอย่างจริงมันเป็นการยากที่จะให้คำแนะนำ อย่างไรก็ตามฉันไม่เคยต้องการใช้คำสั่ง WHERE จำนวนมากในการสืบค้นและอาจบ่งบอกถึงปัญหาเกี่ยวกับโครงสร้างของข้อมูลของคุณ

อาจเป็นประโยชน์สำหรับคุณที่จะเรียนรู้เกี่ยวกับการทำข้อมูลให้เป็นมาตรฐาน: http://en.wikipedia.org/wiki/Third_normal_form


3

คุณสามารถใช้ฝีปากในLaravel 5.3

ผลลัพธ์ทั้งหมด

UserModel::where('id_user', $id_user)
                ->where('estado', 1)
                ->get();

ผลลัพธ์บางส่วน

UserModel::where('id_user', $id_user)
                    ->where('estado', 1)
                    ->pluck('id_rol');

3
สิ่งนี้แตกต่างจากคำถามอย่างไร
veksen


1

คุณสามารถใช้อาร์เรย์ในตำแหน่งที่แสดงในด้านล่าง

$result=DB::table('users')->where(array(
'column1' => value1,
'column2' => value2,
'column3' => value3))
->get();

1
DB::table('users')
            ->where('name', '=', 'John')
            ->orWhere(function ($query) {
                $query->where('votes', '>', 100)
                      ->where('title', '<>', 'Admin');
            })
            ->get();

1

ตามคำแนะนำของฉันหากคุณกำลังทำการกรองหรือค้นหา

จากนั้นคุณควรไปกับ:

        $results = User::query();
        $results->when($request->that, function ($q) use ($request) {
            $q->where('that', $request->that);
        });
        $results->when($request->this, function ($q) use ($request) {
            $q->where('this', $request->that);
        });
        $results->when($request->this_too, function ($q) use ($request) {
            $q->where('this_too', $request->that);
        });
        $results->get();

การค้นหาเกิดขึ้นในด้าน phpside หรือ sql หรือไม่
นายโมฮาเหม็

ด้าน SQL แบบสอบถาม SQL ดำเนินการตามคำขอพารามิเตอร์ อดีต ถ้า requrst มีพารามิเตอร์นี้ จากนั้นที่นี่ = '' ที่มีการเพิ่มเงื่อนไขในการค้นหา
Dhruv Raval


0

ใช้ Eloquent บริสุทธิ์ใช้มันอย่างนั้น รหัสนี้จะส่งคืนผู้ใช้ทุกคนที่มีบัญชีอยู่ $users = \App\User::where('status', 'active')->where('logged_in', true)->get();


0

ตัวอย่างรหัส

ประการแรก:

$matchesLcl=[];

อาร์เรย์ได้รับการเติมที่นี่โดยใช้การนับ / วนรอบเงื่อนไขที่ต้องการเพิ่มขึ้น:

if (trim($request->pos) != '') $matchesLcl['pos']= $request->pos;

และที่นี่:

if (trim($operation) !== '')$matchesLcl['operation']= $operation;

และเพิ่มเติมด้วยฝีปากชอบ:

if (!empty($matchesLcl))
    $setLcl= MyModel::select(['a', 'b', 'c', 'd'])
        ->where($matchesLcl)
        ->whereBetween('updated_at', array($newStartDate . ' 00:00:00', $newEndDate . ' 23:59:59'));
else 
    $setLcl= MyModel::select(['a', 'b', 'c', 'd'])
        ->whereBetween('updated_at', array($newStartDate . ' 00:00:00', $newEndDate . ' 23:59:59'));

-4
public function search()
{
    if (isset($_GET) && !empty($_GET))
    {
        $prepareQuery = '';
        foreach ($_GET as $key => $data)
        {
            if ($data)
            {
                $prepareQuery.=$key . ' = "' . $data . '" OR ';
            }
        }
        $query = substr($prepareQuery, 0, -3);
        if ($query)
            $model = Businesses::whereRaw($query)->get();
        else
            $model = Businesses::get();

        return view('pages.search', compact('model', 'model'));
    }
}

นี่เป็นจุดอ่อนของการฉีด SQL
rrrhys

-21
$variable = array('this' => 1,
                    'that' => 1
                    'that' => 1,
                    'this_too' => 1,
                    'that_too' => 1,
                    'this_as_well' => 1,
                    'that_as_well' => 1,
                    'this_one_too' => 1,
                    'that_one_too' => 1,
                    'this_one_as_well' => 1,
                    'that_one_as_well' => 1);

foreach ($variable as $key => $value) {
    User::where($key, '=', $value);
}

สิ่งนี้จะดำเนินการหลายแบบสอบถาม
veksen
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.