mysql:将所有行放入1列

发布于 2024-09-03 05:15:55 字数 316 浏览 2 评论 0原文

  • post (id_post, title)
  • tag (id_tag, name)
  • post_tag (id_post_tag, id_post, id_tag)

假设 id_post 3 有 4 个链接标签 1,2,3,4(足球、篮球、网球和高尔夫)。

有没有办法在一行中返回类似的内容?

  • col 1 id_post = 3
  • col 2 标签 = 足球篮球网球高尔夫

谢谢

  • post (id_post, title)
  • tag (id_tag, name)
  • post_tag (id_post_tag, id_post, id_tag)

Lets suppose that id_post 3 has 4 linked tags 1,2,3,4 (soccer, basket, tennis and golf).

Is there a way to return something like this in ONE row?

  • col 1 id_post = 3
  • col 2 tags = soccer basket tennis golf

Thanks

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

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

发布评论

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

评论(1

风吹雨成花 2024-09-10 05:15:55

使用:

  SELECT p.id_post
         GROUP_CONCAT(DISTINCT t.name SEPARATOR ' ')
    FROM POST p
    JOIN POST_TAG pt ON pt.id_post = p.id_post
    JOIN TAG t ON t.id_tag = pt.id_post_tag
GROUP BY p.id_post

请注意,默认分隔符是逗号,因此如果您不希望标签名称之间有一个空格,则必须定义一个空格。

文档:

Use:

  SELECT p.id_post
         GROUP_CONCAT(DISTINCT t.name SEPARATOR ' ')
    FROM POST p
    JOIN POST_TAG pt ON pt.id_post = p.id_post
    JOIN TAG t ON t.id_tag = pt.id_post_tag
GROUP BY p.id_post

Be aware that the default separator is a comma, so you have to define a single space if you don't want that between the tag names.

Documentation:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文