表1 =事件 - >持有事件的列表PHP的MySQL先進選擇
表2 =響應 - >保持的用戶的響應的列表具有EID的一個外鍵,其與事件表
I對應需要將表連接在一起,以便它可以在php上返回類似於此的數組。
array(
0 => array(
'title' =>'', //title of events table
'contents' =>'this is a demo', //contents of events table
'users' => array( //users comes from response table
0 = array(
'firstname'=>'John',
),
1 = array(
'firstname'=>'James',
)
)
)
);
可以這樣做嗎?只使用mysql?因爲我知道你可以在PHP上做到這一點。
+1對於連接,就像這樣一個簡單的結果,它將很容易爆炸結果字段。 (假設名字字段不包含分隔符。) – Orbling 2010-12-09 13:48:59