如何以3天为间隔显示结束日期的数据?

时间:2019-05-03 11:32:59

标签: php mysql cakephp

我必须在数据库中有一些条目才能向用户发送通知,但条件看起来像这样,

这里我的结束日期是06-05-2019,现在的当前日期是03-05-201901-05-2019,我想在结束日期的3天之前发送通知到实际的结束日期。例如,我的结束日期是某个事件的06-05-2019,那么我想在日期04-05-201905-05-201906-05-2019发送通知。

我的cakePHP查询代码在这里:

$offer_notify_second = $this->NotificationStore->find('all', array(
                'contain' => array(),          
                'fields' => array('NotificationStore.id','NotificationStore.role_id','NotificationStore.user_id','NotificationStore.notification_type','NotificationStore.notification_app_display_type','NotificationStore.link','NotificationStore.offer_id','NotificationStore.offer_type'), 
                'conditions' => array('DATE_SUB(NotificationStore.end_date, INTERVAL 3 DAY)' => date('Y-m-d'), 'NotificationStore.user_id' => $this->request->data['user_id'], 'NotificationStore.notification_type' => OFFER_NOTIFICATION),
            ));
```

1 个答案:

答案 0 :(得分:3)

我将共享原始查询片段,您可以将其映射到CAKEPHP

WHERE NotificationStore.end_date >= DATE(NOW() + INTERVAL 3 DAY) + INTERVAL 0 SECOND  AND NotificationStore.end_date >= CURDATE();

第1部分

NotificationStore.end_date >= DATE(NOW() + INTERVAL 3 DAY) + INTERVAL 0

这意味着,现在+ 3天应该大于结束日期
例如

当前时间为2019-05-02,接下来的3天为2019-05-05,则条件失败
当前是2019-05-03,接下来的3天是2019-05-06,然后条件成功

第2部分

NotificationStore.end_date >= CURDATE()

这意味着end_date必须大于cur_date才能满足即将到来的3天范围,否则在有第一个条件的情况下它将总是更大。