start project

This commit is contained in:
Pablo Martin 2024-01-18 11:24:35 +01:00
parent 82b9adb085
commit 727431b7b2
13 changed files with 1432 additions and 23 deletions

View file

@ -0,0 +1,27 @@
/*
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