From 61b6cfe0547a51fe40c1f8d9c05d16e6d830feb3 Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Wed, 14 Jul 2021 15:46:38 -0400 Subject: [PATCH] get rid of old months inquirey --- inquirey/months.sql | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 inquirey/months.sql diff --git a/inquirey/months.sql b/inquirey/months.sql deleted file mode 100644 index c144773..0000000 --- a/inquirey/months.sql +++ /dev/null @@ -1,15 +0,0 @@ -SELECT - order_month - ,SUM(value_usd) FILTER (WHERE order_season = 2021 AND iter = 'plan') plan2021 - ,SUM(value_usd) FILTER (WHERE order_season = 2022 AND iter = 'plan') plan2022 - ,SUM(value_usd) FILTER (WHERE order_season = 2021 AND iter = 'diff') diff2021 - ,SUM(value_usd) FILTER (WHERE order_season = 2022 AND iter = 'diff') diff2022 - ,SUM(value_usd) FILTER (WHERE order_season = 2021 AND iter = 'actuals') act2021 - ,SUM(value_usd) FILTER (WHERE order_season = 2022 AND iter = 'actuals') act2022 -FROM - rlarp.osm_pool -WHERE - order_season IN (2021,2022) - AND quota_rep_descr = 'COLIN MAXWELL' -GROUP BY - order_month