View MyView:
.............
. Id | Value.
.............
. 1 | A .
. 2 | B .
. 3 | C .
. 4 | D .
.............
My query as following:
"Select From dbo.MyView Where Id > 1"
Real results:
.............
. Id | Value.
.............
. 2 | B .
. 3 | C .
. 4 | D .
.............
My wished or desired result:
"B, C, D"
I need one string(one row, one column) which merege all values of the column Values.
How can I do that? Any help will be greatly appreciated?