Nifi init

This commit is contained in:
2026-05-17 16:54:29 +02:00
parent 6203332841
commit 9cc58c20f4
15 changed files with 161 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
INSERT INTO DIM_ORGANIZATION (org_id, name, region, country, club_partner_status, founded_year, social_media_followers_m)
VALUES (
${organization_id},
'${name}',
${region:isEmpty():ifElse('NULL', concat("'", ${region}, "'"))},
${country:isEmpty():ifElse('NULL', concat("'", ${country}, "'"))},
${club_partner_status:isEmpty():ifElse('NULL', concat("'", ${club_partner_status}, "'"))},
${founded_year:isEmpty():ifElse('NULL', ${founded_year})},
${social_media_followers_m:isEmpty():ifElse('NULL', ${social_media_followers_m})}
)