I have 1000 questions in the Question Model. How do I select 50 questions out of the 10000 randomly using Yii criteria ??
I am using Mysql as the Db
So far I have tried with the following
$criteria = new CDbCriteria;
$criteria->limit = 50;
$criteria->select = array('id');
$criteria->addCondition('chapter = xyz');