gpt4 book ai didi

mysql - 如何在 Laravel 中编写 orWhereYear()

转载 作者:可可西里 更新时间:2023-11-01 07:49:28 25 4
gpt4 key购买 nike

我的表中有两个日期时间列 - from_date 和 to_date。我需要获取 from_date 或 to_date 的年份为当前年份的记录。我正在尝试使用 whereYear 获取记录,但我卡在了 OR 条件下

$table_records = TableName::whereYear('from_date' , '=', date('Y'))->orWhereYear('to_date' , '=', date('Y'))->orderBy('from_date')->get();

当然,我猜 Laravel 中没有 orWhereYear。有人可以帮我查询吗。

最佳答案

一种方法是这样的:

$table_records = TableName::whereYear('from_date' , '=', date('Y'))
->whereYear('to_date' , '=', date('Y'), 'or')
->orderBy('from_date')
->get();

关于mysql - 如何在 Laravel 中编写 orWhereYear(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40760286/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com