13 lines
630 B
SQL
13 lines
630 B
SQL
|
|
--------------------------Consignement Business metrics--------------------------
|
|
|
|
drop table if exists OM_Order_item_Cogs_Promo_dump_Consignment
|
|
create table OM_Order_item_Cogs_Promo_dump_Consignment
|
|
as
|
|
select distinct transaction_date,brand_name,external_id as order_id,a.sku,quantity,cogs as Cogs Per Unit Applied,(cogs*quantity) as Total Cogs,Shipping_province,
|
|
case when b.cogs_promo notnull then 'Promo Cogs' when b.cogs_non_promo notnull then 'Non Promo Cogs' end as Cogs Type
|
|
from public.GM_dashboard a
|
|
left join public.sku_cogs_audit b on a.sku=b.sku and cast(a.transaction_date as date)=cast(b.created_at as date)
|
|
|
|
|