Skip to content

Commit

Permalink
Update mesh-qs.md (#5755)
Browse files Browse the repository at this point in the history
removed dbt_utils from the sql as it's no longer needed and returns an
error. raised by support @jennlw
  • Loading branch information
mirnawong1 authored Jul 9, 2024
1 parent 5c5f5dc commit 0807671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/guides/mesh-qs.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ Now that you've set up the foundational project, let's start building the data a
c.last_name,
co.first_order_date,
-- Note that we've used a macro for this so that the appropriate DATEDIFF syntax is used for each respective data platform
{{ dbt_utils.datediff('first_order_date', 'order_date', 'day') }} as days_as_customer_at_purchase
{{ datediff('first_order_date', 'order_date', 'day') }} as days_as_customer_at_purchase
from orders o
left join customers c using (customer_id)
left join customer_orders co using (customer_id)
Expand Down

0 comments on commit 0807671

Please sign in to comment.