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

11 lines
367 B
SQL

CREATE OR REPLACE VIEW public.vw_bi_fct_prices AS
SELECT "intPriceCurveId",
"dtmPriceDate" AS "Price Date",
"dblHighPrice" AS "High",
"dblLowPrice" AS "Low",
"dblOpenPrice" AS "Open",
"dblPriceValue" AS "Price Value",
"dtmMaxPriceDate" AS "Last Price Date",
"ysnIsLatestPrice" AS "Is Latest Price"
FROM vw_utility_price_curve_prices;;