Data source: ISO

14 rows where country_code = "SN"

View and edit SQL

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
SN SN-DB Diourbel   fr    
SN SN-DK Dakar   fr    
SN SN-FK Fatick   fr    
SN SN-KA* Kaffrine   fr    
SN SN-KD Kolda   fr    
SN SN-KE* Kédougou   fr    
SN SN-KL Kaolack   fr    
SN SN-LG Louga   fr    
SN SN-MT* Matam   fr    
SN SN-SE* Sédhiou   fr    
SN SN-SL Saint-Louis   fr    
SN SN-TC Tambacounda   fr    
SN SN-TH Thiès   fr    
SN SN-ZG Ziguinchor   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
);