我有一个表格查询
SELECT pub.id, topic.id, pub.title, etc...
FROM pub, topic, link
WHERE (matching logic)
以形式返回
pub.id | topic.id | pub.title
---------------------------------
x1 | a | y1
x1 | b | y1
x1 | ... | y1
x2 | c | y2
x2 | d | y2
x2 | ... | y2
我真正想要的是表格的回复
pub.id | topic.id | pub.title
---------------------------------
x1 | a, b ... | y1
x2 | c, d ... | y2
(我认为匹配逻辑不重要,但如果有必要我会发布它。)
我试过group_concat()
and coalesce
,但没有任何效果。有什么帮助吗?