Add a seed file
- Add a seed file:
seeds/country_codes.csv
country_code,country_name
US,United States
CA,Canada
GB,United Kingdom
...
- Run
dbt seed
- Ref the model in a downstream model
models/something.sql
select * from {{ ref('country_codes') }}
0
country_code,country_name
US,United States
CA,Canada
GB,United Kingdom
...
dbt seed
select * from {{ ref('country_codes') }}