我有一张人桌:
person_id | name
1 | bob
2 | jane
他们可以回答的问题表:
qu_id | question
1 | How old are you?
2 | How tall are you?
还有一张答案表:
answer_id | qu_id | person_id | answer
10 | 1 | 2 | 24
什么查询将返回未回答的人员和问题列表:
例如,未回答的问题:
qu_id | person_id
1 | 1
2 | 1
2 | 2
(我使用的是 SQL Server Express 2012)