Hello all,
I have a table with two fields in it:
Customer ID, Order No
12345, 556
12345, 678
12345, 123
00678, 12
00678, 145
97867, 456
I want to build a query which returns one record for each customer id and one column for each order no. The result set from the above table should look something like this:
12345, 556, 678, 123
00678, 12, 145,
97867, 456
Is this possible?
TIA,
I have a table with two fields in it:
Customer ID, Order No
12345, 556
12345, 678
12345, 123
00678, 12
00678, 145
97867, 456
I want to build a query which returns one record for each customer id and one column for each order no. The result set from the above table should look something like this:
12345, 556, 678, 123
00678, 12, 145,
97867, 456
Is this possible?
TIA,