how to build a Comma seperated list from a table in SQL CE ?
I have table named Group and it has two columns ID and Name
I want to select a one comma seperated string from Group table.
So IF I have 3 records as follows in group table
ID | Name
1 | Msh
2 | Nsh
3 | Lsh
I want to get a one comma seperated list of all three names like this Msh,Nsh,Lsh
How can I get this done is SQL CE
?
Try this..