test(8/22/2008)
|
Here is for adding other column with group by
select re.col2 ,count(*)
,(
select isnull(rei.name,' ') + ',' AS [text()] from dbo.Mytable rei
WHERE (
(
(re.col2 is NULL)
AND
(rei.col2 is NULL)
)
OR
( re.col2 = rei.col2 )
)
FOR XML PATH ('')
) as names
from dbo.Mytable re
group by re.col2
|
|