Data source: ISO

12 rows where country_code = "LU"

View and edit SQL

Suggested facets: language_code

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
LU LU-CA* Kapellen   lb    
LU LU-CL* Klierf   lb    
LU LU-DI* Diekrech   lb    
LU LU-EC* Iechternach   lb    
LU LU-ES* Esch-sur-Alzette   fr    
LU LU-GR* Gréivemaacher   lb    
LU LU-LU* Lëtzebuerg   lb    
LU LU-ME* Miersch   lb    
LU LU-RD* Réiden-Atert   lb    
LU LU-RM* Réimech   lb    
LU LU-VD* Vianden   fr    
LU LU-WI* Wolz   lb    

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