Files
IPZ_1/nifi/sql/load/01_dim_date.sql
2026-05-17 16:54:29 +02:00

13 lines
308 B
SQL

INSERT INTO DIM_DATE (date_key, full_date, year, quarter, month, month_name, week_number, day_of_month, day_name)
VALUES (
${date_key},
TO_DATE('${full_date}', 'YYYY-MM-DD'),
${year},
${quarter},
${month},
'${month_name}',
${week_number},
${day_of_month},
'${day_name}'
)