I didn't know if my problem is related to Pivoting or Transposing so that's why I wrote both in the title.
Below is my query (using it in an Oracle APEX Report)
SELECT QUESTION_ID,
RESPONDENT,
ANSWER
FROM SURVEY
Here is the result :
Question_ID Respondent Answer
1 A test1
2 A test2
3 A test3
1 B test4
2 B test5
3 B test6
The result I want is this :
Question
Respondant 1 2 3
A test1 test2 test3
B test4 test5 test6
How can this be achieved?