Data source: ISO

12 rows where language_code = "nb"

View and edit SQL

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
NO NO-03 Oslo   nb    
NO NO-11 Rogaland   nb    
NO NO-15 Møre og Romsdal   nb    
NO NO-18 Nordland   nb    
NO NO-21 Svalbard (Arctic Region) (see also separate country code entry under SJ)   nb    
NO NO-22 Jan Mayen (Arctic Region) (see also separate country code entry under SJ)   nb    
NO NO-30 Viken   nb    
NO NO-34 Innlandet   nb    
NO NO-38 Vestfold og Telemark   nb    
NO NO-42 Agder   nb    
NO NO-46 Vestland   nb    
NO NO-50 Trøndelag   nb    

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