I am trying to concatenate rows in SQL Server.
Suppose I have a table like:
C1 | C2 | C3 1 | A | 1 | | 1 | | B 2 | A | 2 | | C
And I want to end up:
C1 | C2 | C3 1 | A | B 2 | A | C
Anyway, can I do this with a single request?
I am currently processing data manually using C #, but it is slow and I cannot limit the number of easily returned rows.
Thanks in advance!
Jtirr source share