Files
SQL-Scripts/vw_bi_dim_product.sql
AzureAD\SylvainDUVERNAY 022f4e0a2a First initial commit
2026-01-07 14:38:55 +01:00

17 lines
472 B
SQL

-- View: public.vw_bi_dim_product
-- DROP VIEW public.vw_bi_dim_product;
CREATE OR REPLACE VIEW public.vw_bi_dim_product AS
SELECT "intProductId",
"strProductCode" AS "Product Code",
"strProductDescription" AS "Description",
"ysnActive" AS "Is Active",
"strTemplate" AS "Template",
"strTemplateCode" AS "Template Code",
"strDefaultUom" AS "Default Uom"
FROM vw_utility_product pr;
ALTER TABLE public.vw_bi_dim_product
OWNER TO postgres;