次の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
));
上記のコードはテスト済みで、魅力的に機能します。