$criteria = new CDbCriteria();
$criteria->addInCondition("id", array(1,2,3,4)); // передаём какой-то массив
//в котором искать значение
$users = Student::model()->findAll($criteria);
или можно использовать такой пример - с помощью метода findAllByAttributes:
NO_AUTO_VALUE_ON_ZERO affects handling of AUTO_INCREMENT columns. Normally, you generate the next sequence number for the column by inserting either NULL or 0 into it. NO_AUTO_VALUE_ON_ZERO suppresses this behavior for 0 so that only NULL generates the next sequence number.