これらの結果を表示する以下のクエリがあります。
SELECT q.QuestionId, q.QuestionContent, an.Answer
FROM Answer an
INNER JOIN Question q ON q.AnswerId = an.AnswerId;
クエリの結果:
QuestionId QuestionContent Answer
1 Who are me and you B
1 Who are me and you D
2 Name these Cars A
2 Name these Cars B
2 Name these Cars E
3 What is 2+2 B
私がやりたいのは、同じ QuestionId の回答をまとめてマージすることで、結果は次のようになります。
QuestionId QuestionContent Answer
1 Who are me and you B D
2 Name these Cars A B E
3 What is 2+2 B
これは可能ですか?
ありがとう