PERBARUI:ini tidak berfungsi untuk desain tabel OP di mana 2 baris dibuat untuk pertanyaan 4 jawaban
saya pikir Anda perlu memeriksa terlebih dahulu setiap pertanyaan jika semua jawaban benar dan kemudian menghitung pertanyaan tanpa jawaban yang salah:
select
count(*) - count(incorrect_answers_per_question) correct
from (
select
d.test_id,
d.question_id,
sum(case when r.correct_response_flag = 'N' then 1 end) incorrect_answers_per_question
from test_response d
join question_response r on d.response_id = r.question_resp_id
where d.test_id = '10113'
group by d.test_id, d.question_id
)