Data source: ISO

21 rows where language_code = "ne"

View and edit SQL

Suggested facets: name, local_variant, parent_subdivision

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
NP NP-1 Madhyamanchal   ne conventional names  
NP NP-4 Purwanchal   ne conventional names  
NP NP-5 Sudur Pashchimanchal   ne conventional names  
NP NP-BA Bagmati   ne conventional names NP-1
NP NP-BH Bheri   ne conventional names NP-2
NP NP-DH Dhawalagiri   ne conventional names NP-3
NP NP-GA Gandaki   ne conventional names NP-3
NP NP-JA Janakpur   ne conventional names NP-1
NP NP-KA Karnali   ne conventional names NP-2
NP NP-KO Kosi Koshi ne conventional names NP-4
NP NP-LU Lumbini   ne conventional names NP-3
NP NP-MA Mahakali   ne conventional names NP-5
NP NP-ME Mechi   ne conventional names NP-4
NP NP-NA Narayani   ne conventional names NP-1
NP NP-P3* Bāgmatī Pradesh 3 ne conventional names  
NP NP-P4* Gandaki Pradesh 4 ne conventional names  
NP NP-P6* Karnali Pradesh 6 ne conventional names  
NP NP-P7* Sudūr Pashchim Sudūrpashchim; Pradesh 7 ne conventional names  
NP NP-RA Rapti   ne conventional names NP-2
NP NP-SA Sagarmatha   ne conventional names NP-4
NP NP-SE Seti   ne conventional names NP-5

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