D
dejavue82
This is the result of a JOINed query:
question answer
1 a1
1 a2
1 a3
1 a4
2 a1
2 a2
2 a3
2 a4
How would I use a DataReader to output this data without repeating each
question 4 times?
Do I weed out the repeated question in C# with a while loop?
Or is there a way to do this in the SQL statement?
Thank you for your time and help!
question answer
1 a1
1 a2
1 a3
1 a4
2 a1
2 a2
2 a3
2 a4
How would I use a DataReader to output this data without repeating each
question 4 times?
Do I weed out the repeated question in C# with a while loop?
Or is there a way to do this in the SQL statement?
Thank you for your time and help!