Hi.
I have the following two tables:
Table1 [Organisation, ProjectName]
Table2 [ProjectName, Question, Answer]
I would like to use a SELECT statement to create the following:
[Organisation, Count of responses to question 1, Count of responses to question 2]
i.e. A table with three columns, grouped by Organisation. The first column will be the name of the Organisation, the second column will be a count of all the times a person in that organisation has answered question 1, and the third column will be a count of all the times a person in that organisation has answered question 2.
Any help much appreciated!
Mark