get rid of old months inquirey

This commit is contained in:
Paul Trowbridge 2021-07-14 15:46:38 -04:00
parent e50113f825
commit 61b6cfe054

View File

@ -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