Data source: ISO

5 rows where country_code = "SG"

View and edit SQL

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
SG SG-01* Central Singapore   en    
SG SG-02* North East   en    
SG SG-03* North West   en    
SG SG-04* South East   en    
SG SG-05* South West   en    

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