mysql中的连接值,其中一个表中的多行与另一表中的一行相关

发布于 2024-12-08 03:18:11 字数 905 浏览 0 评论 0原文

我有两个 mysql 表,一个列出文章名称,另一个列出与每篇文章相关的作者,如下所示:

   article_id     title
 =======================
        1         art1
        2         art2
        3         blob


  article_id      name      surname
 =====================================
       1           jack       smith
       1           jill       jones
       1           rob        edgar
       2           billy      bryce
       3           dick       bonsor
       3           jeff       kucick

我正在尝试创建一个将返回以下内容的查询:

 article_id     title                 author
 =========================================================
      1          art1     jack smith, jill jones, rob edgar 
      2          art2                billy bryce
      3          blob          dick bonsor, jeff kucick

我一直在查看 group_concat 和 concat_ws,但我一直在我尝试返回上述结果失败。如果你们对此有任何想法,我将不胜感激!

非常感谢。

I have two mysql tables, one listing article names, the other listing the authors associated with each article, as follows:

   article_id     title
 =======================
        1         art1
        2         art2
        3         blob


  article_id      name      surname
 =====================================
       1           jack       smith
       1           jill       jones
       1           rob        edgar
       2           billy      bryce
       3           dick       bonsor
       3           jeff       kucick

I am trying to create a query that will return the following:

 article_id     title                 author
 =========================================================
      1          art1     jack smith, jill jones, rob edgar 
      2          art2                billy bryce
      3          blob          dick bonsor, jeff kucick

I have been looking at group_concat and concat_ws, but I have been unsuccessful in my attempts to return the above result. If any of you have any thoughts on this, I would be most grateful!

Many thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我喜欢麦丽素 2024-12-15 03:18:11
select
  a.article_id,
  a.title,
  group_concat(concat(p.name, ' ', p.surname)) as author
from
  article a
  inner join author p on p.article_id = a.article_id
group by
  a.article_id, 
  a.title

或者,如果您想使用 concat_ws:

select
  a.article_id,
  a.title,
  group_concat(concat_ws(' ', p.name, p.surname)) as author
from
  article a
  inner join author p on p.article_id = a.article_id
group by
  a.article_id, 
  a.title
select
  a.article_id,
  a.title,
  group_concat(concat(p.name, ' ', p.surname)) as author
from
  article a
  inner join author p on p.article_id = a.article_id
group by
  a.article_id, 
  a.title

or, if you want to use concat_ws:

select
  a.article_id,
  a.title,
  group_concat(concat_ws(' ', p.name, p.surname)) as author
from
  article a
  inner join author p on p.article_id = a.article_id
group by
  a.article_id, 
  a.title
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文