gpt4 book ai didi

php - 运行复杂的多表mysql查询的问题

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

我需要显示页面的详细信息,现在我使用这个查询从 3 个表中获取

group_concat()

它工作正常,但显示重复的标签和主题数组。

最佳答案

您从连接中获得了额外的行。将 DISTINCT 添加到 GROUP_CONCAT 结构中:

SELECT  table_stories.*,
table_stories.sid,table_tags.tid,table_topics.topicid,
group_concat(DISTINCT table_tags.tag ) as mytags,
group_concat(DISTINCT table_topics.topicname ) as mytopics
FROM table_stories,table_tags,table_topics

关于php - 运行复杂的多表mysql查询的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2922322/

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