I don't know if this is possible but would appreciate any help.
RefDes table:
------------------------------------------
ID RefDes
------------------------------------------
123 VR1
123 C1
124 C2
123 C2
123 R1
125 R2
------------------------------------------
Is it possible to write a SELECT statement that will produce the
following?
-------------------------------------------
ID AllRefDes
-------------------------------------------
123 VR1, C1, C2, R1
As you see from the example above, all I need are the RefDes
concatenated together separated by a comma for a particluar ID.
Thanks.