teacher_students.teacher_id = 1
を移動します WHERE
から確認してください 結合するON
の句 句。
LEFT JOIN
の右側にあるテーブルを参照する条件の場合 WHERE句に挿入されると、LEFT JOINはキャンセルされ、INNER JOIN
として機能します。 。
SELECT count(teacher_students.student_id) AS rcount <--- changed
, questions.id
FROM "questions"
LEFT JOIN answers
ON answers.question_id = questions.id
LEFT JOIN teacher_students
ON teacher_students.student_id = answers.student_id
AND teacher_students.teacher_id = 1
WHERE questions.test_id = 1
GROUP BY questions.id
ORDER BY questions.id