We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e72ac47 commit 1b32b70Copy full SHA for 1b32b70
1068-product-sales-analysis-i.sql
@@ -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