Skip to content

DBT Test: Relationships Brazil Bol 2023 Gold Country Of Destination Name Country Name Ref Postgres Countries

DBT test name: relationships_brazil_bol_2023_gold_country_of_destination_name__country_name__ref_postgres_countries_

DBT details


Description

No description


Details

Models

Macros

  • test_relationships
  • get_where_subquery
{{ test_relationships(**_dbt_generic_test_kwargs) }}{{ config(alias="relationships_brazil_bol_2023__40921a8f7d3cefc8811b5d9e27f01bfd") }}
with child as (
    select country_of_destination_name as from_field
    from "trase_production"."main_brazil"."brazil_bol_2023_gold"
    where country_of_destination_name is not null
),

parent as (
    select country_name as to_field
    from "trase_production"."main"."postgres_countries"
)

select
    from_field

from child
left join parent
    on child.from_field = parent.to_field

where parent.to_field is null