Data source: ISO

29 rows where language_code = "ny"

View and edit SQL

Suggested facets: parent_subdivision

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
MW MW-BA* Balaka   ny   MW-S
MW MW-BL* Blantyre   ny   MW-S
MW MW-C* Chapakati   ny    
MW MW-CK* Chikwawa   ny   MW-S
MW MW-CR* Chiradzulu   ny   MW-S
MW MW-CT* Chitipa   ny   MW-N
MW MW-DE* Dedza   ny   MW-C
MW MW-DO* Dowa   ny   MW-C
MW MW-KR* Karonga   ny   MW-N
MW MW-KS* Kasungu   ny   MW-C
MW MW-LI* Lilongwe   ny   MW-C
MW MW-LK* Likoma   ny   MW-N
MW MW-MC* Mchinji   ny   MW-C
MW MW-MG* Mangochi   ny   MW-S
MW MW-MH* Machinga   ny   MW-S
MW MW-MU* Mulanje   ny   MW-S
MW MW-MW* Mwanza   ny   MW-S
MW MW-MZ* Mzimba   ny   MW-N
MW MW-NB* Nkhata Bay   ny   MW-N
MW MW-NE* Neno   ny   MW-S
MW MW-NI* Ntchisi   ny   MW-C
MW MW-NK* Nkhotakota   ny   MW-C
MW MW-NS* Nsanje   ny   MW-S
MW MW-NU* Ntcheu   ny   MW-C
MW MW-PH* Phalombe   ny   MW-S
MW MW-RU* Rumphi   ny   MW-N
MW MW-SA* Salima   ny   MW-C
MW MW-TH* Thyolo   ny   MW-S
MW MW-ZO* Zomba   ny   MW-S

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