Viewing post 1 (of 1 total)
It can be made simple with the following sql statement
SELECT REPLACE((SELECT DISTINCT RTRIM(LTRIM(StatusDesc)) AS 'data()'
FROM dbo.MyStatus
FOR XML PATH ( '' )), ' ', ', ')
March 21, 2011 at 12:54 am
#1301123