Data source: ISO

26 rows where country_code = "CH"

View and edit SQL

Suggested facets: language_code

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
CH CH-AG Aargau   de    
CH CH-AI Appenzell Innerrhoden   de    
CH CH-AR Appenzell Ausserrhoden   de    
CH CH-BE Berne   fr    
CH CH-BL Basel-Landschaft   de    
CH CH-BS Basel-Stadt   de    
CH CH-FR Fribourg   fr    
CH CH-GE Genève   fr    
CH CH-GL Glarus   de    
CH CH-GR Grischun   rm    
CH CH-JU Jura   fr    
CH CH-LU Luzern   de    
CH CH-NE Neuchâtel   fr    
CH CH-NW Nidwalden   de    
CH CH-OW Obwalden   de    
CH CH-SG Sankt Gallen   de    
CH CH-SH Schaffhausen   de    
CH CH-SO Solothurn   de    
CH CH-SZ Schwyz   de    
CH CH-TG Thurgau   de    
CH CH-TI Ticino   it    
CH CH-UR Uri   de    
CH CH-VD Vaud   fr    
CH CH-VS Wallis   de    
CH CH-ZG Zug   de    
CH CH-ZH Zürich   de    

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
);