I want to "concatenate" all the "Text"-rows into one single row and get one row as a result. Is this even possible? I use MSSQL Server 2005.

|
I want to "concatenate" all the "Text"-rows into one single row and get one row as a result. Is this even possible? I use MSSQL Server 2005.
| ||||
|
feedback
|
|
Use FOR XML PATH:
Another option - use string concatenation:
Please note that the latter one isn't guaranteed to work, afaik, officially the behaviour of "@s = @s + ..." for multi-row resultset is undefined. | |||||
|
feedback
|
|
I believe you're looking for something like this:
This will concatenate all of the values for the [Text] column into a single variable. You can then select the variable to retrieve all of the values in a single row. | |||
|
feedback
|
|
Something like:
| |||
|
feedback
|