Data source: ISO

26 rows where language_code = "sw"

View and edit SQL

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
TZ TZ-01 Arusha   sw    
TZ TZ-02 Dar es Salaam   sw    
TZ TZ-03 Dodoma   sw    
TZ TZ-04 Iringa   sw    
TZ TZ-05 Kagera   sw    
TZ TZ-08 Kigoma   sw    
TZ TZ-09 Kilimanjaro   sw    
TZ TZ-12 Lindi   sw    
TZ TZ-13 Mara   sw    
TZ TZ-14 Mbeya   sw    
TZ TZ-16 Morogoro   sw    
TZ TZ-17 Mtwara   sw    
TZ TZ-18 Mwanza   sw    
TZ TZ-19 Pwani   sw    
TZ TZ-20 Rukwa   sw    
TZ TZ-21 Ruvuma   sw    
TZ TZ-22 Shinyanga   sw    
TZ TZ-23 Singida   sw    
TZ TZ-24 Tabora   sw    
TZ TZ-25 Tanga   sw    
TZ TZ-26* Manyara   sw    
TZ TZ-27* Geita   sw    
TZ TZ-28* Katavi   sw    
TZ TZ-29* Njombe   sw    
TZ TZ-30* Simiyu   sw    
TZ TZ-31 Songwe   sw    

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