gpt4 book ai didi

mysql - Zend Db Select 中带有 JOINLEFT 的 GROUP_CONCAT

转载 作者:可可西里 更新时间:2023-11-01 07:03:46 25 4
gpt4 key购买 nike

假设我有2张 table

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

我做错了什么?

最佳答案

您没有在查询中使用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');

关于mysql - Zend Db Select 中带有 JOINLEFT 的 GROUP_CONCAT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10086136/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com