Data source: ISO

13 rows where country_code = "CA"

View and edit SQL

Suggested facets: language_code

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
CA CA-AB Alberta   fr    
CA CA-BC Colombie-Britannique   fr    
CA CA-MB Manitoba   fr    
CA CA-NB Nouveau-Brunswick   fr    
CA CA-NL Terre-Neuve-et-Labrador   fr    
CA CA-NS Nova Scotia   en    
CA CA-NT Territoires du Nord-Ouest   fr    
CA CA-NU Nunavut   fr    
CA CA-ON Ontario   fr    
CA CA-PE Île-du-Prince-Édouard   fr    
CA CA-QC Québec   fr    
CA CA-SK Saskatchewan   fr    
CA CA-YT Yukon   fr    

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE subdivisions (
    country_code text NOT NULL
    , code_31662 text NOT NULL
    , name text
    , local_variant text
    , language_code text
    , romanization_system text
    , parent_subdivision text
    , PRIMARY KEY (country_code , code_31662)
    , FOREIGN KEY (country_code) REFERENCES countries (alpha_2_code) ON DELETE CASCADE
    , FOREIGN KEY (language_code) REFERENCES languages (alpha_2_code) ON DELETE CASCADE
);