I'm working with a table that has the following structure:
[autono]pk
[quest_num]pk
[quest_yn]
[quest_weight]
The table holds a yes no reply to a series of 15 questions. Each question has a certain weight factor. later.
I need to be able to perform 2 task. The first is to come up with a total score for all questions with a distinct autono. From this, I need need to list for each distinct autono, the question which was answered no to if their score was >10.
This would then bring two other tables:
[apr_id]pk
[quest_name]pk
[quest_text]
[quest_mailout]
and
[autono]pk
[county]
[name]
[date]
I'm not certain how to go about this task.
[autono]pk
[quest_num]pk
[quest_yn]
[quest_weight]
The table holds a yes no reply to a series of 15 questions. Each question has a certain weight factor. later.
I need to be able to perform 2 task. The first is to come up with a total score for all questions with a distinct autono. From this, I need need to list for each distinct autono, the question which was answered no to if their score was >10.
This would then bring two other tables:
[apr_id]pk
[quest_name]pk
[quest_text]
[quest_mailout]
and
[autono]pk
[county]
[name]
[date]
I'm not certain how to go about this task.