-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path1068. Product Sales Analysis I.sql
More file actions
46 lines (37 loc) · 1.19 KB
/
1068. Product Sales Analysis I.sql
File metadata and controls
46 lines (37 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
Question 1068. Product Sales Analysis I
Link: https://leetcode.com/problems/product-sales-analysis-i/description/
Table: Sales
+-------------+-------+
| Column Name | Type |
+-------------+-------+
| sale_id | int |
| product_id | int |
| year | int |
| quantity | int |
| price | int |
+-------------+-------+
(sale_id, year) is the primary key (combination of columns with unique values) of this table.
product_id is a foreign key (reference column) to Product table.
Each row of this table shows a sale on the product product_id in a certain year.
Note that the price is per unit.
Table: Product
+--------------+---------+
| Column Name | Type |
+--------------+---------+
| product_id | int |
| product_name | varchar |
+--------------+---------+
product_id is the primary key (column with unique values) of this table.
Each row of this table indicates the product name of each product.
Write a solution to report the product_name, year, and price for each sale_id in the Sales table.
Return the resulting table in any order.
*/
SELECT
p.product_name,
s.year,
s.price
FROM Sales AS s
LEFT JOIN
Product AS p
ON s.product_id = p.product_id