我正在尝试在 Eloquent ORM 中执行以下查询,但似乎无法执行 MySQL 函数 -
$post = Post::where('slug', '=', $slug)->where('YEAR(created_at)', '=', $year)->first();
我得到的异常如下 - 消息:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'YEAR(created_at)' in 'where clause'
SQL: SELECT * FROM `posts` WHERE `slug` = ? AND `YEAR(created_at)` = ? LIMIT 1
Bindings: array (
0 => 'placeholder',
1 => 2013,
)
因此,基本上,它将YEAR()
MySQL 函数封装为列。有没有办法在不使用原始查询的情况下做到这一点?