jitender
jitender

Reputation: 33

How can i write a MySQL query in CakePHP

How can I write the following mysql query in cakephp:

SELECT * FROM table WHERE DATE BETWEEN '2008-12-23' AND '2008-12-25';

Upvotes: 1

Views: 1038

Answers (1)

bjudson
bjudson

Reputation: 4083

Using Cake's ORM, it would look something like this (where Model is the name of your model, usually a singularized version of your table name):

$this->Model->find('all', array('conditions' => array(
    'Model.date BETWEEN ? AND ?' => array('2008-12-23', '2008-12-25')));

Check here for more details: http://book.cakephp.org/2.0/en/models/retrieving-your-data.html

Upvotes: 3

Related Questions