我们平时在查询数据时,经常需要`指定日期范围`
比如`查询开始日期和结束日期`之间的数据
或者取`年月日`对应的数据
经常需要用到`date, from_unixtime, unix_timestamp,year`之类的函数
比较繁琐
那么在laravel中有没有简单的办法
>DB::table('article')->whereYear('created_at', '2020')->get(); # 年
DB::table('article')->whereMonth('created_at', '12')->get(); # 月
DB::table('article')->whereDay('created_at', '19')->get(); # 一个月的第几天
DB::table('article')->whereDate('created_at', '2020-12-19')->get(); # 具体日期
DB::table('article')->whereTime('created_at', '14:00')->get(); # 时间