我有两个 Mysql 表
参与者
id | name | lastname |
----------------------------
1 | Jon | Bush |
2 | Stephen | Eagle |
和
帖子
id | parentid | Title | text
--------------------------------------
1 | 1 | Title1 | Text1
2 | 1 | title3 | text2
3 | 1 | title4 | text4
4 | 2 | title | ttext
我需要离开桌子
id (1) | Jon | <a href='index.php?id='1'>Title1</a>, <a href='index.php?id='2'>title3</a>, <a href='index.php?id='3'>title4</a>
id (2) | Stephen | <a href='index.php?id='4'>title<a/>
所以我需要用包含 ID 的超链接取出标题。
我用
SELECT a.ID, a.Name,
GROUP_CONCAT(b.Title) TitleList
FROM participants a
INNER JOIN posts b
ON a.ID = b.parentID
GROUP BY a.ID, a.Name
但在这种情况下,我只能取出没有 ID 行的标题行...
问候