Question
Cannot chain with statements in SQL Lite. Code: %%sql WITH MAX as (SELECT Stores.Store, sum(Sales.WeeklySales) as salesSum FROM Stores, Sales, Holidays WHERE Stores.Store = Sales.Store
Cannot chain with statements in SQL Lite.
Code:
%%sql WITH MAX as (SELECT Stores.Store, sum(Sales.WeeklySales) as salesSum FROM Stores, Sales, Holidays WHERE Stores.Store = Sales.Store and Sales.WeekDate = Holidays.WeekDate and Holidays.IsHoliday = 'TRUE' GROUP BY Stores.Store) SELECT MAX.Store, round(max(MAX.salesSum),2) AS AllSales FROM MAX UNION WITH MIN as (SELECT Stores.Store, sum(Sales.WeeklySales) as salesSum FROM Stores, Sales, Holidays WHERE Stores.Store = Sales.Store and Sales.WeekDate = Holidays.WeekDate and Holidays.IsHoliday = 'TRUE' GROUP BY Stores.Store) SELECT MIN.Store, round(MIN(MAX.salesSum),2) AS AllSales FROM MIN
Error:
(sqlite3.OperationalError) near "WITH": syntax error [SQL: WITH MAX as (SELECT Stores.Store, sum(Sales.WeeklySales) as salesSum FROM Stores, Sales, Holidays WHERE Stores.Store = Sales.Store and Sales.WeekDate = Holidays.WeekDate and Holidays.IsHoliday = 'TRUE' GROUP BY Stores.Store) SELECT MAX.Store, round(max(MAX.salesSum),2) AS AllSales FROM MAX UNION WITH MIN as (SELECT Stores.Store, sum(Sales.WeeklySales) as salesSum FROM Stores, Sales, Holidays WHERE Stores.Store = Sales.Store and Sales.WeekDate = Holidays.WeekDate and Holidays.IsHoliday = 'TRUE' GROUP BY Stores.Store) SELECT MIN.Store, round(MIN(MAX.salesSum),2) AS AllSales FROM MIN] (Background on this error at: http://sqlalche.me/e/e3q8)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started