Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions models/staging/stg_customers.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,9 @@ with source as (
renamed as (

select
id as customer_id,
lower(email) as email,
first_name,
last_name,
concat(first_name, ' ', last_name) as full_name,
age,
gender,
city,
state,
country,
traffic_source,
created_at

*

from source

)
Expand Down
Loading