I'm doing a query in the database and I need to get information between two values of the valor
column that are within the specified amount.
For example: Between valorMinimo
300 and valorMaximo
600
$imovel = $this->Imovel->find('all', array(
'conditions' => array(
'valor' => $queries['valorMin'], 'valor' => $queries['valorMax']
)
));