We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bdc87f commit a3690b1Copy full SHA for a3690b1
SQL1/Group_Sold_Products_By_The_Date.sql
@@ -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