I am running a market survey and all the survey data is saved in the database. I need a query for counting the number of rows in which option "1" is selected for question "1", option "2" for question "1" and so on for all questions and options… I need to specify few conditions here, I have to match distinct ID's of 3 tables and display the result for each particular ID.
|
|
|||||
|
|
|
I hope this is what you want ! |
||
|
|
|
|
assuming table
you can simply do
that will give you results like:
Of course if your table is normalised just use the proper joins in the from part |
||
|
|
|
|
The basis for a query would be something like this:
You could add the necessary conditions in a |
|||
|
|
|
|
I think you're going to have to do it the hard way:
and,
Else you'll need a script to run through all the iterations of the data/options. What platform are you on? |
|||
|
|
