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