dbt - Advanced Patterns
Which of the following is the correct syntax to perform a full outer join in dbt's SQL model?
SELECT * FROM source_a a
FULL OUTER JOIN source_b b
ON a.id = b.idWhich of the following is the correct syntax to perform a full outer join in dbt's SQL model?
SELECT * FROM source_a a
FULL OUTER JOIN source_b b
ON a.id = b.idFULL OUTER JOIN with the join condition.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions