Data source: ISO

18 rows where language_code = "rn"

View and edit SQL

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
BI BI-BB* Bubanza   rn    
BI BI-BL* Bujumbura Rural   rn    
BI BI-BM* Bujumbura Mairie   rn    
BI BI-BR* Bururi   rn    
BI BI-CA* Cankuzo   rn    
BI BI-CI* Cibitoke   rn    
BI BI-GI* Gitega   rn    
BI BI-KI* Kirundo   rn    
BI BI-KR* Karuzi   rn    
BI BI-KY* Kayanza   rn    
BI BI-MA* Makamba   rn    
BI BI-MU* Muramvya   rn    
BI BI-MW* Mwaro   rn    
BI BI-MY* Muyinga   rn    
BI BI-NG* Ngozi   rn    
BI BI-RM* Rumonge   rn    
BI BI-RT* Rutana   rn    
BI BI-RY* Ruyigi   rn    

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