Data source: ISO

12 rows where country_code = "AL"

View and edit SQL

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
AL AL-01 Berat   sq    
AL AL-02 Durrës   sq    
AL AL-03 Elbasan   sq    
AL AL-04 Fier   sq    
AL AL-05 Gjirokastër   sq    
AL AL-06 Korçë   sq    
AL AL-07 Kukës   sq    
AL AL-08 Lezhë   sq    
AL AL-09 Dibër   sq    
AL AL-10 Shkodër   sq    
AL AL-11 Tiranë   sq    
AL AL-12 Vlorë   sq    

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