gpt4 book ai didi

php - 如何在php和mysql中使用逗号显示一个标题名称多个出版社名称的两条记录的数据

转载 作者:行者123 更新时间:2023-11-29 11:46:32 25 4
gpt4 key购买 nike

enter image description here在第一个表中,我有新闻事件标题

enter image description here在第二个表中,我有新闻事件标题 ID 和新闻名称

enter image description here

通过使用上面两个表格,我想使用逗号分隔来显示新闻标题和新闻名称。示例:Polio Drops(标题)-- 海得拉巴、钦奈、类加罗尔等...(名称)

最佳答案

您应该加入这两个表,然后使用group_concat,如下所示:

Select t1.title, group_concat (t2.press_name)
From table1 t1
Left join table2 t2 on t2.press_title=t1.id
Group by 1

关于php - 如何在php和mysql中使用逗号显示一个标题名称多个出版社名称的两条记录的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34836741/

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