yii中使用ar可以进行嵌套吗?

WBOY
Release: 2016-06-23 13:47:45
Original
1017 people have browsed it

$c             = new CDbCriteria();$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";$res = Goods::model()->with( 'brand' )->findAll( $c );
Copy after login

类似上面的查询(上面的不对,查不出 tags字段),yii用ar可以查询吗?具体怎么操作?


回复讨论(解决方案)

relation里面有写规则不? 先看下CActiveRecord源码  实在不行直接用sql吧

还是使用 createCommand() 比较简单。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template