YFDashboard / src /dbt_yfdash /models /example /my_first_dbt_model.sql
Jon Solow
Uncomment from example and add duckdb file to gitignore
96d7dde
raw
history blame
472 Bytes
/*
Welcome to your first dbt model!
Did you know that you can also configure models directly within SQL files?
This will override configurations stated in dbt_project.yml
Try changing "table" to "view" below
*/
{{ config(materialized='table') }}
with source_data as (
select 1 as id
union all
select null as id
)
select *
from source_data
/*
Uncomment the line below to remove records with null `id` values
*/
where id is not null