Skip to content

Commit a43fba0

Browse files
authored
Create 01069-prooduct-sales-analysis-ii.sql
1 parent 4fd4562 commit a43fba0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- simple aggregate
2+
3+
select product_id, sum(quantity) as total_quantity
4+
from Sales
5+
group by 1
6+
7+
-- amazon- 1

0 commit comments

Comments
 (0)