我有两个 Mysql 表
participants
id | name | lastname |
-----------------------------
1 | Jon | Bush |
-----------------------------
2 | Stephen | Eagle |
和
posts
id | parentid | Title | text
--------------------------------------
1 | 1 | Title1 | Text1
---------------------------------------
2 | 1 | title3 | text2
---------------------------------------
3 | 1 | title4 | text4
--------------------------------------
4 | 2 | title | ttext
我需要离开桌子
--------------------------
id (1) | Jon | Title1, title3, title4
------------------------------
id (2) | Stephen | title
我尝试这样做
$result = mysql_query("SELECT name, Title, participants.id, parent FROM aposts, participants WHERE paricipants.id = parent.parent group by last_name ORDER BY .......");
但是在这种情况下,我无法在父母身上找到这个父母的所有帖子......也许有人可以帮助我......