Leetcode - 1068. Product Sales Analysis I
문제
정답
SELECT product_name, year, price
FROM Sales
JOIN Product ON Sales.product_id = Product.product_id
SELECT product_name, year, price
FROM Sales
JOIN Product ON Sales.product_id = Product.product_id