Files
Implementation_ITSA/Database Backups/SQL Views/vw_bi_dim_price_curve.sql
AzureAD\SylvainDUVERNAY 3a3e715336 Commit all views
2026-05-11 14:01:13 +02:00

15 lines
533 B
SQL

CREATE OR REPLACE VIEW public.vw_bi_dim_price_curve AS
SELECT "intPriceCurveId",
"strPriceDescription" AS "Description",
"strPriceIndex" AS "Index",
"strCurrency" AS "Currency",
"strUnit" AS "Unit",
"strPriceCurveType" AS "Type",
"strPriceArea" AS "Area",
"strPriceCalendar" AS "Calendar",
"strPricingType" AS "Pricing Type",
"dtmPricingStartDate" AS "Pricing Start Date",
"dtmPricingEndDate" AS "Pricing End Date",
"strPricingMonth" AS "Pricing Month"
FROM vw_utility_price_curve p;;