I have a table with the following fields:
Date
Commodity
Price
Buyer
Seller
In the first record, the data looks like this:
Date: 8/20/2003
Commodity: Banana
Price: 1.1500
Buyer: Fred
Seller
In the second record, the data looks like this:
Date: 8/20/2003
Commodity: Banana
Price: 1.1500
Buyer:
Seller: John
I would like to be able to combine these records (that are within the same table) into one record (within a different table) that looks like this:
Date: 8/20/2003
Commodity: Banana
Price: 1.1500
Buyer: Fred
Seller: John
As long as the date, commodity and price match, combine them. If one of these fields (date, commodity or price) don’t match, I wouldn’t want the records combined.
Any suggestions? Thanks.
Date
Commodity
Price
Buyer
Seller
In the first record, the data looks like this:
Date: 8/20/2003
Commodity: Banana
Price: 1.1500
Buyer: Fred
Seller
In the second record, the data looks like this:
Date: 8/20/2003
Commodity: Banana
Price: 1.1500
Buyer:
Seller: John
I would like to be able to combine these records (that are within the same table) into one record (within a different table) that looks like this:
Date: 8/20/2003
Commodity: Banana
Price: 1.1500
Buyer: Fred
Seller: John
As long as the date, commodity and price match, combine them. If one of these fields (date, commodity or price) don’t match, I wouldn’t want the records combined.
Any suggestions? Thanks.