假设我有2张桌子
articles
id title
1 Article 1
2 Article 2
Images
id article_id image
1 1 a.png
2 1 b.png
3 2 c.png
4 2 d.png
我想要的就是用图像来回顾所有文章。
例如:
article_id title images
1 Article 1 a.png, b.png
2 Article 2 c.png, d.png
我怎么能用Zend_Db_Select做到这一点?
我试过这样的事情,但没有运气:
$select = $this->getDbTable()->select()->setIntegrityCheck(false)->distinct();
$select->from(array('a'=>'articles'))
->joinLeft(array('i'=>'images'),'i.article_id=a.id',array('images'=> new
Zend_Db_Expr('GROUP_CONCAT(i.image)')));
它只返回1行'images'字段包含两篇文章的图像。
article_id title images
1 Article 1 a.png, b.png, c.png, d.png
我在这里做错了什么?
答案 0 :(得分:7)
您尚未在查询中使用group by
子句。
尝试以下:
$select->from(array('a'=>'articles'))
->joinLeft(
array('i'=>'images'),
'i.article_id=a.id',
array('images'=> new Zend_Db_Expr('GROUP_CONCAT(i.image)')))
->group('a.id');