Skip to content

Commit

Permalink
Merge pull request dbt-labs#11 from swanderz/more_generic
Browse files Browse the repository at this point in the history
not all dbs support 'using'
  • Loading branch information
annafil authored Sep 9, 2021
2 parents b08b27e + 8ebbc1e commit 2551fd0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion models/orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ final as (

from orders

left join order_payments on orders.order_id = order_payments.order_id

left join order_payments
on orders.order_id = order_payments.order_id

)

Expand Down

0 comments on commit 2551fd0

Please sign in to comment.