我必须要桌子,一张是profile
,另一张是rating
。
rating
有一个profileid
作为主键profile.id
的字段和一个带有评级值的字段。现在我想找到评分最高的字段并显示相应的配置文件。由于我是 YII 框架的新手,所以我遇到了麻烦。请帮我摆脱它。我在做什么如下所述。
$topRage=new CDbCriteria();
$topRage->select="*";
$topRage->alias="t1";
$topRage->order="rateing DESC";
$topRage->join="JOIN `ratings` ON `profile`.`id` = `t1`.`profileId`";
$topRage->limit="1";