From d8f3016b2722b29af6bd7bdcb7bd350c847ddfce Mon Sep 17 00:00:00 2001 From: cmacias12 <143342871+cmacias12@users.noreply.github.com> Date: Sun, 27 Aug 2023 19:27:05 -0500 Subject: [PATCH] Create Sum of Impressions by day --- Sum of Impressions by day | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Sum of Impressions by day 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);