udemy-complete-dbt-bootcamp/code_thingies/dbtlearn/models/example/my_first_dbt_model.sql
Pablo Martin cfaa7cfecc dbt stuff
2023-10-29 18:40:01 +01:00

27 lines
475 B
SQL

/*
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