Jump to content

Cakephp range


alvin567

Recommended Posts

Cake's ORM sucks.  Write the query yourself...

 

$sql = "SELECT * 
        FROM table_name AS ModelName 
        WHERE column_name IN(1,2,3,4,5,6,7,8,9)
        OR column_name BETWEEN 10 AND 20
        OR column_name BETWEEN 20 AND 4;"
$result = $this->ModelName->query($sql);

Link to comment
https://forums.phpfreaks.com/topic/263305-cakephp-range/#findComment-1349468
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.