sql7(Leetcode1068产品销售分析1)

1113-2

代码:

# Write your MySQL query statement below
SELECT Product.product_name,Sales.year,Sales.price 
FROM Sales LEFT JOIN Product ON Sales.product_id = Product.product_id

你可能感兴趣的:(leetcode)