使用Laravel Eloquent 建立具有多個WHERE 子句的查詢
考慮以下場景:您正在使用Laravel 的建置Eloquent 查詢器並且需要建立具有針對不同條件的多個WHERE 子句的查詢。雖然可以透過多個 where 方法呼叫來做到這一點,但這種方法可能會變得重複且笨拙。
為了解決這個問題,Laravel 提供了幾種替代選項來更優雅地建立此類查詢。
在where
中使用一系列條件
$query->where([ ['column_1', '=', 'value_1'], ['column_2', '<>', 'value_2'], // ... ]);
從Laravel 5.3 開始,您可以在傳遞給where 方法的數組中指定多重條件:
在where中使用數組
$matchThese = ['field' => 'value', 'another_field' => 'another_value', ...]; $results = User::where($matchThese)->get();
在Laravel 5.3 之前,你還可以使用數組指定條件where:
使用orWhere
$results = User::where($matchThese) ->orWhere($orThose) ->get();
或者,您可以使用orWhere將條件分組:
結果SQL 查詢
SELECT * FROM users WHERE (field = value AND another_field = another_value AND ...) OR (yet_another_field = yet_another_value AND ...)
使用orWhere 方法將產生與此類似的查詢:
這些技術使您能夠以更簡潔和可維護的方式建立具有多個WHERE 子句的查詢。以上是如何使用多個 WHERE 子句有效率地建構 Laravel Eloquent 查詢?的詳細內容。更多資訊請關注PHP中文網其他相關文章!