I have a table with 2 columns ID (not PK) and NAME. I want to take all the names that have the same ID and connect them into one column - how can I do this?
e.g.
ID Name
---- ----
1 A
2 B
3 C
3 D
5 E
3 F
result :
1 A
2 B
3 CDF
5 E