Tanner Wilcox
03/13/2025, 10:29 PM{{
config(materialized='table')
}}
SELECT
id,
DISTINCT jsonb_array_elements_text(tags) AS tag
FROM {{ source("nipap", "ip_net_plan") }}
What is recommended I use for the ID of each tag? Could I just assign an auto increment number? Would that cause problem with subsequent runs of my pipeline? Do I even need an ID? Couldn't I just put the string in my linking table? Might not be as performant.Andy Carter
03/14/2025, 8:45 AM