Ok, I am at a loose here, can someone help?
I have some data in a table which looks like this;
UserID Question Answer
68 1 2
68 2 3
68 3 Yes
69 1 3
69 2 2
69 3 No
The UserID, Question and Answer are varchars.
I need a View,Temp Table or write real time to a fixed width text file. The end result should resemble the output below.
UserID Question1 Question2 Question3
68 2 3 Yes
69 3 2 No
This is just a portion of the data, but if someone can tell me how to get the many rows for a User and their questions with answers to a Single row per user that would be outstanding.
Thank you for your help!
13Echo
I have some data in a table which looks like this;
UserID Question Answer
68 1 2
68 2 3
68 3 Yes
69 1 3
69 2 2
69 3 No
The UserID, Question and Answer are varchars.
I need a View,Temp Table or write real time to a fixed width text file. The end result should resemble the output below.
UserID Question1 Question2 Question3
68 2 3 Yes
69 3 2 No
This is just a portion of the data, but if someone can tell me how to get the many rows for a User and their questions with answers to a Single row per user that would be outstanding.
Thank you for your help!
13Echo