我需要将以下 mysql 条件转换为 Cakephp 查找条件。
select * from bookings where (check_out_date - check_in_date) <=600 ;
请帮我。
$this->Booking->find('all', array(
'conditions' => array(
'(Booking.check_out_date - Booking.check_in_date) <=' => 600
)
));
尝试以下代码并对其进行调试。
$bookings = $this->Booking->find('all',array
(
'conditions' => array
(
'(Booking.check_out_date - Booking.check_in_date) <=' => 600
),
'fields' => array
(
'Booking.*'
),
'recursive' => -1
));
上面的代码已经过测试并且像魅力一样工作。