Hi,
I have a query as follows:
SELECT DISTINCT Question.[Question Number] FROM Question;
Question Number is the only field that I want distinct, but I would like to show 2 other fields that go with Question Number (Question ID, and Question).
Any suggestions. This statement doesn't work:
SELECT DISTINCT Question.[Question Number], Question.[Question ID], Question.Question
FROM Question;
It give me duplicates on Question Number.
Thanks.
I have a query as follows:
SELECT DISTINCT Question.[Question Number] FROM Question;
Question Number is the only field that I want distinct, but I would like to show 2 other fields that go with Question Number (Question ID, and Question).
Any suggestions. This statement doesn't work:
SELECT DISTINCT Question.[Question Number], Question.[Question ID], Question.Question
FROM Question;
It give me duplicates on Question Number.
Thanks.