Greetings...
We maintain a database for a client as a relational (one to many) database and the client would like us to provide a "flat" file of the data for them to have inhouse.
Current data example
ID ShowCode
10001 CH09
10001 LB09
10001 RN09
10002 CP08
10002 CP09
I would like to build output like this;
ID ShowCodes
10001 CH09*LB09*RN09
10002 CP08*CP09
I have written a program to do this, however can this be done with a query?
Thank you in advance for any information.
We maintain a database for a client as a relational (one to many) database and the client would like us to provide a "flat" file of the data for them to have inhouse.
Current data example
ID ShowCode
10001 CH09
10001 LB09
10001 RN09
10002 CP08
10002 CP09
I would like to build output like this;
ID ShowCodes
10001 CH09*LB09*RN09
10002 CP08*CP09
I have written a program to do this, however can this be done with a query?
Thank you in advance for any information.