vpellerito
Technical User
Is it possible to write a SQL select statement that grabs values from one or many fields (of a particular grouping ) and displays as a single concatenated field?
For example,
Project, Station, Question, SubQuestion, Response
KK-55, 10, 1, A, Boat
KK-55, 10, 1, B, House
KK-55, 10, 1, C, Cat
KK-55, 11, 1, A, Country
KK-55, 11, 2, A, Sand
Select statement shows:
Project, Station, Question, Response
KK-55, 10, 1, Boat-House-Cat
KK-55, 11, 1, Country
KK-55, 11, 2, Sand
I realize that it is not desirable to do this in databases because it would make the Response field non-atomic but for the sake of argument, is it possible?
This is a simple example of a larger question for me, which is can you use SQL to mimic the behavior of a cursor? This would be easy to do if I used VB to manipulate the data, for example.
For example,
Project, Station, Question, SubQuestion, Response
KK-55, 10, 1, A, Boat
KK-55, 10, 1, B, House
KK-55, 10, 1, C, Cat
KK-55, 11, 1, A, Country
KK-55, 11, 2, A, Sand
Select statement shows:
Project, Station, Question, Response
KK-55, 10, 1, Boat-House-Cat
KK-55, 11, 1, Country
KK-55, 11, 2, Sand
I realize that it is not desirable to do this in databases because it would make the Response field non-atomic but for the sake of argument, is it possible?
This is a simple example of a larger question for me, which is can you use SQL to mimic the behavior of a cursor? This would be easy to do if I used VB to manipulate the data, for example.