web-dev-qa-db-ja.com

を使用して複数のwhere句クエリを作成する方法 Laravel 雄弁?

私は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();

これを行うより良い方法はありますか、それとも私はこの方法を使い続けるべきですか?

298
veksen

Laravel 5.3 として、配列として渡されるよりきめ細かいホイールを使用することができます。

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

個人的には、whereを複数回呼び出しただけでは、このような使用法は見つかりませんでしたが、実際に使用できます。

2014年6月以降、配列をwhereに渡すことができます

すべてのwheresand演算子を使用したいのであれば、これらを次のようにグループ化することができます。

$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 ...)
452
Jarek Tkaczyk

クエリスコープは、コードを読みやすくするのに役立ちます。

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();
76
Luis Dalmolin

あなたはこのような無名関数で副問い合わせを使うことができます:

 $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();
59
Juljan

この場合は、次のようにします。

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')
29
alexglue

配列を使用した条件:

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

次のようなクエリを生成します。

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

無名関数を使用した条件:

$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)
19
srmilon

複数のwhere句

    $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
Majbah Habib

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
Alex Quintero
Model::where('column_1','=','value_1')->where('column_2 ','=','value_2')->get();

OR

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

OR

Model::where(['column_1' => 'value_1','column_2' => 'value_2'])->get();
5
DsRaj
$projects = DB::table('projects')->where([['title','like','%'.$input.'%'],
    ['status','<>','Pending'],
    ['status','<>','Not Available']])
->orwhere([['owner', 'like', '%'.$input.'%'],
    ['status','<>','Pending'],
    ['status','<>','Not Available']])->get();
5
Lim Kean Phang

サブクエリには、他のフィルタを必ず適用してください。

$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();
5
adamk

Laravel 5.3 でeloquentを使用できます。

すべての結果

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

部分結果

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

whereIn条件を使用して配列を渡す

$array = [1008,1009,1010];

User::whereIn('users.id', $array)->get();

2
Rahul Tathod

実際の例がないと、推薦をすることは困難です。しかし、私はクエリでその多くのWHERE句を使用する必要は一度もありませんでした。それはあなたのデータの構造に問題があることを示しているかもしれません。

データの正規化について学ぶことは役に立つかもしれません: http://en.wikipedia.org/wiki/Third_normal_form

2
Aaron Cicali

以下に示すように、where句で配列を使用できます。

$result=DB::table('users')->where(array(
'column1' => value1,
'column2' => value2,
'column3' => value3))
->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();
0
Dhruv Raval

純粋なEloquentを使用して、そのように実装します。このコードは、アカウントがアクティブになっているログインしているすべてのユーザーを返します。 $users = \App\User::where('status', 'active')->where('logged_in', true)->get();

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

これを使って

$users = DB::table('users')
                    ->where('votes', '>', 100)
                    ->orWhere('name', 'John')
                    ->get();
0