SELECT * FROM table WHERE id IN (1,2,3,4,5)
The above query can be converted to CakePHP like so
<?php $ids = array(1,2,3,4,5); $this->Model->find('all', array( 'conditions' => array('Model.id' => $ids) ));
Piece of cake eh?