-2

我的数据库中有 2 个表:

http://bildr.no/view/SnIzL1Z2

我想要以下输出:

http://bildr.no/view/REFDamZn

我已经尝试过使用内部连接,但后来我返回到很多行。

有人对此有解决方案吗?

谢谢!

4

3 回答 3

1
Select ta.*,tq.Question
From TblAnswers ta
Inner Join TblQuestion tq
  On ta.QuestionId=tq.QuestionId
于 2013-10-04T09:31:20.653 回答
1

请尝试使用 INNER JOIN

SELECT DISTINCT
    A.ID,
    A.SurveyID,
    A.PersonID,
    A.Answer,
    B.QuestionID,
    B.Question
FROM TblAnswers A INNER JOIN TblQuestion B
    ON A.QuestionID=B.QuestionID
于 2013-10-04T09:31:43.907 回答
0
Select Distinct ta.*, tq.* 
from TblAnswers ta,TblQuestions tq 
where ta.QuestionId=tq.QuestionId
于 2013-10-04T09:54:18.100 回答