8

在 cakephp 查询条件中,我只有日期必须满足表的日期时间字段的条件。假设我只有日期(2013-09-21)并且字段是(2013-09-21 07:45:23)。我有问题在这里给出条件。

4

2 回答 2

12

如果@Aryan 的解决方案不起作用,因为您需要在数据库中进行格式之间的转换,那么您需要使用 MySQL 函数DATE。这会将查找示例更改为:

$row = $this->Model->find('all',
                    array('fields' => array('........'),
                    'conditions' => array(
                        'DATE(Story.created) >' => $date)));
于 2013-10-22T11:24:11.210 回答
1
$date_string = "2013-09-21";
$new_date = date('Y-m-d H:i:s', strtotime($date_string));
$row = $this->Model->find('all',
                    array('fields' => array('........'),
                    'conditions' => array(
                        'Story.created >' => $new_date)));
于 2013-10-22T11:17:19.620 回答