0
我試圖從問題表中獲取所有記錄,不管它們是否存在於答案表中。共有50個問題,但我只檢索49個。我做錯了什麼?SQL Server左連接不返回空白條目
select
q.question_txt
from
apdev.form_template.question q
left join
apdev.form_submission.answer a on q.question_id = a.question_id
where
a.submission_id = 2704336
and q.form_id = 23
我以爲肯定我曾試過。我一定有其他的東西頂起來了。非常感謝你。 – nikotromus