अद्यतन करें:यह ओपी के टेबल डिजाइन के लिए काम नहीं करता है जहां 4-उत्तर वाले प्रश्नों के लिए 2 पंक्तियां बनाई जाती हैं
मुझे लगता है कि आपको पहले प्रत्येक प्रश्न की जांच करने की आवश्यकता है यदि उसके सभी उत्तर सही हैं और फिर गलत उत्तरों के बिना प्रश्नों की गणना करें:
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
)