Skip to content

DBT Test: Relationships Global Coffee Trade Padded 2020 Country Of Destination Country Name Ref Postgres Countries

DBT test name: relationships_global_coffee_trade_padded_2020_country_of_destination__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_global_coffee_tr_f46bacd7d04a2328b57ede94c94e6091") }}
with child as (
    select country_of_destination as from_field
    from "memory"."main"."global_coffee_trade_padded_2020"
    where country_of_destination is not null
),

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

select
    from_field

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

where parent.to_field is null