Skip to content

Commit 1b32b70

Browse files
committed
1068
1 parent e72ac47 commit 1b32b70

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

1068-product-sales-analysis-i.sql

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Write your MySQL query statement below
2+
SELECT
3+
Product.product_name, Sales.year, Sales.price
4+
FROM
5+
Sales
6+
JOIN
7+
Product
8+
ON
9+
Sales.product_id = Product.product_id;

0 commit comments

Comments
 (0)