1. ホーム
  2. php

[解決済み] Laravel Eloquentを使用して複数のWhere句クエリを作成する方法?

2022-03-18 04:22:35

質問

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

もっと良い方法があるのでしょうか、それともこの方法でいくべきなのでしょうか?

どのように解決するのですか?

Laravel 5.3 (現在もそうですが 7.x を使用すると、配列として渡されたより詳細なwhereresを使用することができます。

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

個人的には、マルチプル以上の用途は見いだせません。 where を呼び出すことができますが、実際には使用することができます。

2014年6月より、配列を渡すことができるようになりました。 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 ...)