change the baseline version names

This commit is contained in:
Paul Trowbridge 2020-10-27 23:12:10 -04:00
parent e12a96df2e
commit 6d2cacb726
2 changed files with 7 additions and 7 deletions

View File

@ -5,7 +5,7 @@ setup
the basic assumption is a single sales table is available to work with that has a lot of related data that came from master data tables originally.
the goal then is to break that back apart to whatever degree is necessary.
* _**run**_ schema.sql and perd.sql to setup basic tables
* _**run**_ `schema.sql` and `perd.sql` to setup basic tables
* create a table fc.live as copied from target
* _**run**_ `target_info.sql` to populate the `fc.target_meta` table that holds all the columns and their roles
* fill in flags on table `fc.target_meta` to show how the data is related

View File

@ -2,7 +2,7 @@ WITH
baseline AS (
-----------------------copy YTD sales---------------------------------------------------------------------
SELECT
,'15mo' "version"
,'baseline' "version"
,'actuals' iter
FROM
rlarp.osm_dev o
@ -27,8 +27,8 @@ baseline AS (
UNION ALL
---------option 1: fill in the rest of the year, with the prior years sales-sales----------------------------
SELECT
,'actuals' "version"
,'actuals_plug' iter
,'baseline' "version"
,'plug' iter
FROM
rlarp.osm_dev o
LEFT OUTER JOIN gld ON
@ -44,8 +44,8 @@ baseline AS (
UNION ALL
--------option 2: fill in the remainder of the current year with current forecase-----------------------------
SELECT
,'actuals' "version"
,'forecast_plug' iter
,'baseline' "version"
,'plug' iter
FROM
rlarp.osmp_dev o
LEFT OUTER JOIN gld ON
@ -69,7 +69,7 @@ SELECT
,o.rseas + 1 --incremented
,o.sdate + interval '1 year' --incremented
,o.sseas + 1 --incremented
,'b21' "version"
,'baseline' "version"
,'copy' iter
FROM
baseline o