Files
Implementation_ITSA/Database Backups/SQL Views/vw_bi_itsa_dim_price_group.sql
AzureAD\SylvainDUVERNAY 3986882771 Commit all views
2026-04-23 09:24:37 +02:00

13 lines
352 B
SQL

CREATE OR REPLACE VIEW public.vw_bi_itsa_dim_price_group AS
SELECT 1 AS "intPriceGroupId",
'Price'::text AS "Price Group",
1 AS "Group Order"
UNION ALL
SELECT 2 AS "intPriceGroupId",
'Fees'::text AS "Price Group",
2 AS "Group Order"
UNION ALL
SELECT 3 AS "intPriceGroupId",
'MTM'::text AS "Price Group",
2 AS "Group Order";;