Skip to main content

Add a seed file

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