得到与教义相同的结果

时间:2011-08-07 13:20:11

标签: php mysql symfony1 doctrine

我在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)重复数据。标签不一定返回。

1 个答案:

答案 0 :(得分:2)

在join语句中使用'WITH'子句。 应该是->leftJoin('Tag c WITH c.tag_id = 2')

之类的东西

或按新闻ID ->groupBy('id_news')

对结果进行分组