Build your first dbt™ model
Purpose
Key Components
Creating a Model File
-- models/stg_customers.sql
SELECT
id,
first_name,
last_name,
email
FROM {{ source('jaffle_shop', 'raw_customers') }}Using the source() Function
Running Your Model
Best Practices
Last updated
Was this helpful?