diff --git a/Sum of Impressions by day b/Sum of Impressions by day new file mode 100644 index 0000000..625049d --- /dev/null +++ b/Sum of Impressions by day @@ -0,0 +1,5 @@ +SELECT DATE(date_column) AS day, + SUM(impressions_column) AS total_impressions +FROM Marketing_Performance +GROUP BY DATE(date_column) +ORDER BY DATE(date_column);