From a824c04f7c7623baf9960eccc4c7e31d7a2d8436 Mon Sep 17 00:00:00 2001 From: Christopher Vu Date: Tue, 3 Oct 2023 23:24:16 -0500 Subject: [PATCH] fixing typo --- MandatoryQueries/fiftyTwoWeeksOfHistory.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MandatoryQueries/fiftyTwoWeeksOfHistory.sql b/MandatoryQueries/fiftyTwoWeeksOfHistory.sql index fc36245..9bd9a3e 100644 --- a/MandatoryQueries/fiftyTwoWeeksOfHistory.sql +++ b/MandatoryQueries/fiftyTwoWeeksOfHistory.sql @@ -1,4 +1,4 @@ --- This wlil select fifty two weeks of sales history (count of orders grouped by week) +-- This will select fifty two weeks of sales history (count of orders grouped by week) SELECT week, SUM(number_of_drinks_sold) AS order_count FROM sales_data