Hi, I will try and explain this as best I can, any questions please ask:
I have three tabels -
- tblOrderProducts
- tblOrders
- tblProducts
tblOrders contains the order details but not the actual products that the customer has ordered, so I need to cross referrence the tables:
VendorTxCode is a field in both tblOrders and tblOrderProducts.
tblOrderProducts contains the following:
VendorTxCode | ProductId | Price | Quantity
651 1 42.50 1
651 4 3.99 4
tblProducts has the these fields:
ProductId | Price | Description
1 42.50 Chicken
4 3.99 Egg
So my question is how would be able to display the product description and quantity of each item order by the VendorTxCode:
Thanks for lookin and I hope you can help I was up til 4am this morning trying all diferent ways without sucess.
Thanks