Yii でのネストに ar を使用することはできますか?
$c = new CDbCriteria();<br />$c->join = "left join (select goods_id, group_concat(name) as `tags` from goods_tag group by goods_id) `tag` on tag.goods_id=t.id";<br />$res = Goods::model()->with( 'brand' )->findAll( $c );