In the original table each order may have multiple invoice numbers - example .......
TABLE ORDERS
order_no order_seq inv_no
1234 1 I14567
1234 2 I23454
4567 1 A34567
7894 1 2348900
7894 2 4459888GH
7894 4 aa234fg
I would now like to create a table taking data from TABLE ORDERS whereby you would have one order line and the inv_no's would be concatenated - example taken from above data .......
MYTABLE
order_no inv_no
1234 I14567,I23454
4567 A34567
7894 2348900, 445988GH, aa234fg
Is this possible and how - your help much appreciated
Phil
TABLE ORDERS
order_no order_seq inv_no
1234 1 I14567
1234 2 I23454
4567 1 A34567
7894 1 2348900
7894 2 4459888GH
7894 4 aa234fg
I would now like to create a table taking data from TABLE ORDERS whereby you would have one order line and the inv_no's would be concatenated - example taken from above data .......
MYTABLE
order_no inv_no
1234 I14567,I23454
4567 A34567
7894 2348900, 445988GH, aa234fg
Is this possible and how - your help much appreciated
Phil