Hello all
i have a table in SQL 2008 as
ID Items 1 A 1 B 2 C 3 D 3 B
i would like to get the result as
ID Items 1 A,B 2 C 3 B,D
I have used cursors but it has considerably slowed the process , can i achieve the above result using group by query or through any other way.
Thanks and Regards
Kapil