From 0100ea9e2f93b3fd8a8e1528e7827fc90c425feb Mon Sep 17 00:00:00 2001 From: Doug Guthrie Date: Fri, 28 Mar 2025 16:11:51 +0000 Subject: [PATCH 1/2] change column name --- models/marts/core/fct_order_items.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/marts/core/fct_order_items.sql b/models/marts/core/fct_order_items.sql index 48552df..650d24c 100644 --- a/models/marts/core/fct_order_items.sql +++ b/models/marts/core/fct_order_items.sql @@ -48,7 +48,7 @@ final as ( order_item.item_discount_amount, order_item.item_tax_amount, order_item.net_item_sales_amount, - order_item.gross_item_sales_amount as gross_item_sales_amount + order_item.gross_item_sales_amount as gross_item_sales_amount_2 from order_item From b1a63c4618b6c54691249c2d490a5f144f3f6737 Mon Sep 17 00:00:00 2001 From: Doug Guthrie Date: Fri, 28 Mar 2025 16:16:29 +0000 Subject: [PATCH 2/2] times two --- models/marts/core/fct_order_items.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/marts/core/fct_order_items.sql b/models/marts/core/fct_order_items.sql index 650d24c..4e64548 100644 --- a/models/marts/core/fct_order_items.sql +++ b/models/marts/core/fct_order_items.sql @@ -48,7 +48,7 @@ final as ( order_item.item_discount_amount, order_item.item_tax_amount, order_item.net_item_sales_amount, - order_item.gross_item_sales_amount as gross_item_sales_amount_2 + order_item.gross_item_sales_amount*2 as gross_item_sales_amount from order_item