Skip to content

DBT Test: Unique Fao Countries And Territories Codes Id

DBT test name: unique_fao_countries_and_territories_codes_id

DBT details


Description

No description


Details

Models

Macros

  • test_unique
  • get_where_subquery
{{ test_unique(**_dbt_generic_test_kwargs) }}
select
    id as unique_field,
    count(*) as n_records

from "trase_production"."main"."fao_countries_and_territories_codes"
where id is not null
group by id
having count(*) > 1