I want to find all entries in my database beginning with id X. The problem is, that i need to find them not just: id>=X but with a specific sortation (like "votes" or "created"). like that:
$this->find('all',array('conditions' => array('example'=>'example', 'FROM id' => X),'order' => 'created ASC');
So my wanted results are not ordered by id like 2,5,6,7 they can be mixed up.
An example is: My wanted id's are 4,1,5,9,2,10,12. I already have 4 and 1. So I want to receive next everything from 1 on (5,9,2,10,12 in this order).
Is this possible?
Edit: Cake Version 2.5.4