Skip to content

Commit a3690b1

Browse files
authored
Create Group_Sold_Products_By_The_Date.sql
1 parent 0bdc87f commit a3690b1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
SELECT sell_date , COUNT(DISTINCT product) AS num_sold,
2+
group_concat(distinct product) AS products
3+
FROM Activities
4+
GROUP BY sell_date

0 commit comments

Comments
 (0)