Den kanoniske måde at gribe dette an på er at bruge en underforespørgsel til at identificere produkterne og deres maksimumpriser fra product_supplier
tabel, og derefter for at slutte denne underforespørgsel til order
for at få det resultatsæt, du ønsker.
SELECT t1.orderID,
t1.productID,
COALESCE(t2.cost_price, 0.0) AS cost_price -- missing products will appear
FROM order t1 -- with a zero price
LEFT JOIN
(
SELECT productID, MAX(cost_price) AS cost_price
FROM product_supplier
GROUP BY productID
) t2
ON t1.productID = t2.productID AND
t1.cost_price = t2.cost_price