I have to get the min price value V.Price for each P.PartID but the PartID can have for than one price value. Below is what I have so far Also I am getting other FRID besides 0 as well. Please helpSelect P.PartID, P.mansPart, P.Cost As PartCost, V.PartID, V.PartNo, V.price As VendPrice, M.title, C.CoName, P.FRIDFrom Parts As PRight Join Vend2Part As VOn P.PartID = V.PartID And P.FRID = V.FRIDLeft Join companies As COn C.COID = V.COID And C.FRID = V.FRIDLeft Join db_manuf As MOn P.manufacturer = M.ManIDWhere P.FRID = 0 And P.cost > (V.price * 1.02) or P.cost < (V.price * 0.98) And V.price = (Select Min(Price) From Vend2Part)Order By P.FRID