More stuff
This commit is contained in:
parent
63411b6190
commit
23a70ed74e
2 changed files with 24 additions and 1 deletions
10
code_thingies/dbtlearn/models/src/src_hosts.sql
Normal file
10
code_thingies/dbtlearn/models/src/src_hosts.sql
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
WITH raw_hosts AS (
|
||||
SELECT *
|
||||
FROM raw.raw_hosts
|
||||
)
|
||||
SELECT
|
||||
id as host_id,
|
||||
name as host_name,
|
||||
is_superhost as flag_is_superhost
|
||||
FROM
|
||||
raw_hosts
|
||||
Loading…
Add table
Add a link
Reference in a new issue