Table: A Table: B Table: C
------------ ---------------- -------------
P_id | G_id P_id | Name G_id | Title
------------ ---------------- -------------
1 | 1 1 | john 1 | php
2 | 1 2 | jack 2 | sql
3 | 2 3 | sam
现在我正在查询:
Select B.name, C.title
from B inner join A on...
inner join c on...
如果我们在此处输入 john,它将显示如下:
john php.
但我想像这样显示它:
john jack php.
因为 john 和 jack 的 G_id 相同。
我怎样才能做到这一点?