Files
IPZ_1/nifi/sql/extract/04_dim_organization.sql
2026-05-17 16:54:29 +02:00

11 lines
250 B
SQL

SELECT
o.organization_id,
o.name,
o.region,
c.name AS country,
o.club_partner_status,
o.founded_year,
o.social_media_followers_m
FROM organization o
LEFT JOIN country c ON o.country_id = c.country_id;