Sometimes you need to use functions in your queries for example using datediff. How would you do it in cakephp? Simply don't assign any value to the key and it will be inserted as it is. For example to get the query "where datediff(deadline,now())<7" you'd do
$this->Decision->find(array('datediff(deadline,now())<7'));Simple, efficent, nice.
