hi all
Need a bit of help/direction with an sql query
i have a table with customer details and in another with customer orders. I need to show all the orders in the same field based upon the id from the customer details table.In other words to piggy back all the orders in one field.Do i use some sort of sub query?
if i have :
Code:
customer orders:
custID Order
c1 Vauxhall
c1 ford
c1 VW
c1 BMW
so that i get:
Code:
customer car orders
c1 Vauxhall ford VW BMW
How can i achieve this? thanks dave