Data source: ISO

18 rows where country_code = "SO"

View and edit SQL

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
SO SO-AW* Awdal   so    
SO SO-BK* Bakool   so    
SO SO-BN* Banaadir   so    
SO SO-BR* Bari   so    
SO SO-BY* Bay   so    
SO SO-GA* Galguduud   so    
SO SO-GE* Gedo   so    
SO SO-HI* Hiiraan   so    
SO SO-JD* Jubbada Dhexe   so    
SO SO-JH* Jubbada Hoose   so    
SO SO-MU* Mudug   so    
SO SO-NU* Nugaal   so    
SO SO-SA* Sanaag   so    
SO SO-SD* Shabeellaha Dhexe   so    
SO SO-SH* Shabeellaha Hoose   so    
SO SO-SO* Sool   so    
SO SO-TO* Togdheer   so    
SO SO-WO* Woqooyi Galbeed   so    

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