I've got a table setup like so:
[ReferredID], [Name]
1, Irwin
2, Marc
1, Johnny
5, Jackie
2, Perry
1, Reuben
I'm trying to get a query that will produce this:
[ReferredID], [List]
[1], [Irwin, Johnny, Reuben]
[2], [Marc, Perry]
[5], [Jackie]
Can you help me find the right query to produce these results or something near?