使用laravel获得每月的一周

时间:2019-06-12 10:07:28

标签: php laravel sql-update

大家好,我有桌子: table_name:u_history

kode_customer  date_create           week      month
22220001       2019-05-11 10:59:01   x          x
22220001       2019-05-20 13:40:27   x          x

我在我的sql中使用查询查询了获取日期,我可以像样本一样 从u_history中选择日期(“ date_create”)

我可以得到11和20,但是当我想使用其他代码时没有任何作用

$weekofmonth1=2;
$week1 = DB::table('u_history_events')
                ->select('u_history_events.week')
                ->where (day('u_history_events.date_create'), 7,'<',14)
                ->where('u_history_events.kode_customers',$request->kode_customer)
                ->update(['week'=>$weekofmonth1]);

我希望我可以在日期7-14更改为2的星期

0 个答案:

没有答案