1

我需要将以下 mysql 条件转换为 Cakephp 查找条件。

select * from bookings where (check_out_date - check_in_date) <=600 ;

请帮我。

4

2 回答 2

2
$this->Booking->find('all', array(
    'conditions' => array(
        '(Booking.check_out_date - Booking.check_in_date) <=' => 600
    )
));
于 2013-01-04T11:50:10.700 回答
-1

尝试以下代码并对其进行调试。

$bookings = $this->Booking->find('all',array
(
    'conditions' => array
    (
        '(Booking.check_out_date - Booking.check_in_date) <=' => 600
    ),
    'fields' => array
    (
        'Booking.*'
    ),
    'recursive' => -1
));

上面的代码已经过测试并且像魅力一样工作。

于 2013-01-04T10:37:23.047 回答