Laravel只搜索7天的记录 [英] Laravel search for records 7 days old only

查看:660
本文介绍了Laravel只搜索7天的记录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正尝试提取仅7天的记录,而不是更早或更早的记录. 但是它不起作用,我正在使用Carbon.

i am trying to pull records that are 7 days old only , not older or earlier. But its not working, i'm using Carbon.

->where(DB::raw('date(AppDate)'), Carbon::now()->subDays(7))

推荐答案

我有一个解决方案,但未使用Carbon.

I have a solution, but its not using Carbon.

 ->whereRaw('DATE(AppDate) = DATE_SUB(CURDATE(), INTERVAL 7 DAY)')

这篇关于Laravel只搜索7天的记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆