思路1
SELECT p.product_name, s.year, s.price
FROM Sales s JOIN Product p
ON s.product_id=p.product_id;
Last updated
Was this helpful?
SELECT p.product_name, s.year, s.price
FROM Sales s JOIN Product p
ON s.product_id=p.product_id;
Last updated
Was this helpful?