答えとcommmentsがそうのように、別のテーブルに格納されます。
データベース
質問
question_ID question_title question_body question_asker question_date
は
answer_ID answer_title answer_body answer_asker answer_date question_ID
に答えます
ここコメント
comment_ID comment_title comment_body comment_asker comment_date answer_ID
INNER JOINを使用してデータをフェッチするPHPコードの例である:
PHP
$dbh = new PDO('mysql:host=localhost;dbname=stackoverflow', $user, $pass);
$query = 'SELECT * from questions INNER JOIN answers ON answers.question_ID = question_ID INNER JOIN comments on comments.comment_ID = answer_ID';
foreach($dbh->query($query) as $row) {
print_r($row);
}
stackoverflowのデータベースの完全なスキーマ:Database schema
Stack Exchangeのスキーマの詳細については、http://meta.stackexchange.com/questions/2677/database-schema-documentation-for-the-public-data-dump-and-sedeを参照してください。 – Mureinik