如何将 GROUP_CONCAT 添加到 LEFT JOIN 查询?
我有这个查询(和结果):
select articles.article_id, articles.article_text, article_photos.photo_filename
from
articles
left join article_photos
on article_photos.article_id=articles.article_id
>>> results
1,some_text,photo1.jpg
1,some_text,photo2.jpg
1,some_text,photo3.jpg
如何将 GROUP_CONCAT 合并到此中,以便我得到:
>>> results
1,some_text,photo1.jpg
NULL,NULL,photo2.jpg
NULL,NULL,photo3.jpg
基本上,我有一个包含文章的表和包含图像的相关表。一篇文章可以包含多个属于它的图像,因此我尝试在 while 循环内将其打印在屏幕上,并且不希望在存在多个图像时一遍又一遍地重复文本。
I have this query (and results):
select articles.article_id, articles.article_text, article_photos.photo_filename
from
articles
left join article_photos
on article_photos.article_id=articles.article_id
>>> results
1,some_text,photo1.jpg
1,some_text,photo2.jpg
1,some_text,photo3.jpg
How do I incorporate GROUP_CONCAT to this so that I get:
>>> results
1,some_text,photo1.jpg
NULL,NULL,photo2.jpg
NULL,NULL,photo3.jpg
Basically, I have a table with articles, and related table with images. An article can have multiple images belonging to it, so I'm trying to print it on screen within while loop, and don't want text to repeat over and over when there's multiple images.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将返回
与您在预期结果中显示的不完全一样的结果。这就是你所要求的吗?
would return
which is not quite what you've shown in your expected results. Is this what you're asking for?