Skip to content

1068. Product Sales Analysis I 👍

1
2
3
4
5
6
7
SELECT
  Product.product_name,
  Sales.year,
  Sales.price
FROM Sales
INNER JOIN Product
  USING (product_id);