如何使用Eloquent 的whereBetween 方法檢索日期範圍內的資料
根據特定日期範圍建立報表時,過濾資料至關重要有效地。使用 Laravel 的 Eloquent ORM,您可以輕鬆檢索兩個指定日期之間的資料。
在您的程式碼片段中,您嘗試取得與特定日期相符的所有預訂。要修改此查詢以檢索某個日期範圍內的數據,您可以使用 whereBetween 方法。
$from = date('2018-01-01'); $to = date('2018-05-02'); $reservations = Reservation::whereBetween('reservation_from', [$from, $to])->get();
此查詢將傳回您指定的日期範圍內的所有預訂.
此外,您可以使用以下方法新增動態日期範圍或排除Intervals:
這是使用這些的範例方法:
Reservation::whereBetween('reservation_from', [$from1, $to1]) ->orWhereBetween('reservation_to', [$from2, $to2]) ->whereNotBetween('reservation_to', [$from3, $to3]) ->get();
理解各種where 子句,例如whereIn、whereNull、whereDate 以及許多其他子句,將增強您的能力能夠建立更靈活的查詢。
有關更多詳細信息,請參閱 Laravel 的Where 文件條款。
以上是如何使用 Laravel 的 Eloquent 檢索特定日期範圍內的資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!