From bf9b0b5ad2e52398840848f553789ea3552d01d8 Mon Sep 17 00:00:00 2001 From: Jonah Hatfield Date: Fri, 5 Jan 2024 14:42:32 -0500 Subject: [PATCH] For issue #190, this is to remove the 3 explicit year references in the data fields for obj_investments --- api/queries/GET/get_investments.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/queries/GET/get_investments.sql b/api/queries/GET/get_investments.sql index ed4148c8..9a37badb 100644 --- a/api/queries/GET/get_investments.sql +++ b/api/queries/GET/get_investments.sql @@ -14,9 +14,9 @@ SELECT DISTINCT invest.Investment_Id AS ID, REGEXP_REPLACE(invest.primary_service_area, '[0-9]+ - ', '') AS PSA, -- Remove Leading Numbers invest.Updated_Date, - invest.`Total IT Spending FY2019 (PY) ($ M)` AS Total_Spend_PY, - invest.`Total IT Spending FY2020 (CY) ($ M)` AS Total_Spend_CY, - invest.`Total IT Spending FY2021 (BY) ($ M)` AS Total_Spend_BY, + invest.`Total IT Spending (PY) ($ M)` AS Total_Spend_PY, + invest.`Total IT Spending (CY) ($ M)` AS Total_Spend_CY, + invest.`Total IT Spending (BY) ($ M)` AS Total_Spend_BY, invest.`DME PY Agency Funding ($ M)` AS DME_Agency_Fund_PY, invest.`DME PY Contributions ($ M)` AS DME_Contributions_PY, invest.`DME CY Agency Funding ($ M)` AS DME_Agency_Fund_CY,