Is there a way to create a query where one table has several values that need to be added to a row in another table? For example, let's say I have one table with address and customer information, and another table that has items that the customer sells and their ID. So it'd be something like this:
tblCustomer:
CustomerID, CustomerName, CustomerAddress
tblItemsSold:
ID, CustomerID, ItemSold
ID would be the Access designated Primary Key. What I want in my results is something like this:
CustomerID, CustomerName, CustomerAddress, ItemSold1, ItemSold2, ItemSold3
So if tblItemsSold has more than one item per CustomerID, I want it to show up in the same row.
Thanks for any help in advance!
tblCustomer:
CustomerID, CustomerName, CustomerAddress
tblItemsSold:
ID, CustomerID, ItemSold
ID would be the Access designated Primary Key. What I want in my results is something like this:
CustomerID, CustomerName, CustomerAddress, ItemSold1, ItemSold2, ItemSold3
So if tblItemsSold has more than one item per CustomerID, I want it to show up in the same row.
Thanks for any help in advance!