我在Symfony 1.4和Doctrine 1.2中有这样的查询:
$this->query = Doctrine_Core::getTable('News')
->createQuery('a')->leftJoin('Tag c')->where('c.tag_id = 2' ) ->execute();
此返回例如:
| id_news | tag | title_news |
| 1 | 1 | title1 |
| 1 | 2 | title1 |
| 2 | 1 | title2 |
| 2 | 2 | title2 |
| 2 | 3 | title2 |
等
我该怎么做:
| id_news | tag | title_news |
| 1 | xxxx| title1 |
| 2 | xxxx| title2 |
(只有一个(1和1)和(2和title2)) 我不想从表新闻(id_news,title_news)重复数据。标签不一定返回。
答案 0 :(得分:2)
在join语句中使用'WITH'子句。
应该是->leftJoin('Tag c WITH c.tag_id = 2')
或按新闻ID ->groupBy('id_news')