我的数据库中有 2 个表:
我想要以下输出:
我已经尝试过使用内部连接,但后来我返回到很多行。
有人对此有解决方案吗?
谢谢!
我的数据库中有 2 个表:
我想要以下输出:
我已经尝试过使用内部连接,但后来我返回到很多行。
有人对此有解决方案吗?
谢谢!
Select ta.*,tq.Question
From TblAnswers ta
Inner Join TblQuestion tq
On ta.QuestionId=tq.QuestionId
请尝试使用 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
Select Distinct ta.*, tq.*
from TblAnswers ta,TblQuestions tq
where ta.QuestionId=tq.QuestionId