Data source: ISO

69 rows where language_code = "-"

View and edit SQL

Suggested facets: country_code

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
BQ BQ-BO* Boneiru   -    
BQ BQ-SA* Saba   -    
BQ BQ-SE* Sint Eustatius   -    
KM KM-A* Ndzuwani   -    
KM KM-G* Ngazidja   -    
ME ME-01* Andrijevica   -    
ME ME-02* Bar   -    
ME ME-03* Berane   -    
ME ME-04* Bijelo Polje   -    
ME ME-05* Budva   -    
ME ME-06* Cetinje   -    
ME ME-07* Danilovgrad   -    
ME ME-08* Herceg-Novi   -    
ME ME-09* Kolašin   -    
ME ME-10* Kotor   -    
ME ME-11* Mojkovac   -    
ME ME-12* Nikšić   -    
ME ME-13* Plav   -    
ME ME-14* Pljevlja   -    
ME ME-15* Plužine   -    
ME ME-16* Podgorica   -    
ME ME-17* Rožaje   -    
ME ME-18* Šavnik   -    
ME ME-19* Tivat   -    
ME ME-20* Ulcinj   -    
ME ME-21* Žabljak   -    
ME ME-22* Gusinje   -    
ME ME-23* Petnjica   -    
ME ME-24* Tuzi   -    
NO NO-54 Tromssan ja Finmarkun   -    
PW PW-002* Aimeliik   -    
PW PW-004* Airai   -    
PW PW-010* Angaur   -    
PW PW-050* Hatohobei   -    
PW PW-100* Kayangel   -    
PW PW-150* Koror   -    
PW PW-212* Melekeok   -    
PW PW-214* Ngaraard   -    
PW PW-218* Ngarchelong   -    
PW PW-222* Ngardmau   -    
PW PW-224* Ngatpang   -    
PW PW-226* Ngchesar   -    
PW PW-227* Ngeremlengui   -    
PW PW-228* Ngiwal   -    
PW PW-350* Peleliu   -    
PW PW-370* Sonsorol   -    
SC SC-04* O Kap   -    
SC SC-06* Be Lazar   -    
SC SC-07* Be Sent Ann   -    
SC SC-08* Bovalon   -    
SC SC-09* Beler   -    
SC SC-10* Belonm   -    
SC SC-11* Kaskad   -    
SC SC-12* Glasi   -    
SC SC-15* Ladig   -    
SC SC-16* Larivyer Anglez   -    
SC SC-19* Plezans   -    
SC SC-20* Pwent Lari   -    
SC SC-22* Sen Lwi   -    
SC SC-25* Ros Kaiman   -    
TL TL-AL* Aileu   -    
TL TL-AN* Ainaru   -    
TL TL-BA* Baukau   -    
TL TL-BO* Bobonaru   -    
TL TL-CO* Kovalima   -    
TL TL-DI* Díli   -    
TL TL-ER* Ermera   -    
TL TL-MF* Manufahi   -    
TL TL-MT* Manatutu   -    

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