I have two tables
Tbl_MarItems (Items that are used in my business)
Auto_MarItemID (primary key)
Str_AltCode
Str_ProdDesc
Str_UOM
Tbl_VendorPrice (prices from suppliers for items that are used in my business)
Str_VendorID
Num_MarItemID (many side of primary key relationship)
Str_VendorItemID
Str_VendorUOM
Cur_VendorPrice
Date_QuoteDate
How can I produce the following:
Select the lowest price (Cur_VendorPrice) vendor for a particular item (Num_MarItemID) and show the following fields in the result:
Str_ProdDesc
Str_UOM
Str_VendorItemID
Str_VendorID
Num_MarItemID
Cur_VendorPrice
Date_QuoteDate
Thank you!
Tbl_MarItems (Items that are used in my business)
Auto_MarItemID (primary key)
Str_AltCode
Str_ProdDesc
Str_UOM
Tbl_VendorPrice (prices from suppliers for items that are used in my business)
Str_VendorID
Num_MarItemID (many side of primary key relationship)
Str_VendorItemID
Str_VendorUOM
Cur_VendorPrice
Date_QuoteDate
How can I produce the following:
Select the lowest price (Cur_VendorPrice) vendor for a particular item (Num_MarItemID) and show the following fields in the result:
Str_ProdDesc
Str_UOM
Str_VendorItemID
Str_VendorID
Num_MarItemID
Cur_VendorPrice
Date_QuoteDate
Thank you!