Преместете 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