dbt - Jinja in dbt
Given this dbt model snippet:
What will be the value of
SELECT user_id, CASE WHEN age >= 18 THEN 'adult' ELSE 'minor' END AS age_group FROM users
What will be the value of
age_group for a user with age 16?