Data source: ISO

12 rows where country_code = "JO"

View and edit SQL

Suggested facets: local_variant

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
JO JO-AJ* ‘Ajlūn   ar BGN/PCGN 1956  
JO JO-AM* Al ‘A̅şimah ‘Ammān ar BGN/PCGN 1956  
JO JO-AQ* Al ‘Aqabah Aqaba ar BGN/PCGN 1956  
JO JO-AT* Aţ Ţafīlah   ar BGN/PCGN 1956  
JO JO-AZ* Az Zarqā’   ar BGN/PCGN 1956  
JO JO-BA* Al Balqā’   ar BGN/PCGN 1956  
JO JO-IR* Irbid   ar BGN/PCGN 1956  
JO JO-JA* Jarash   ar BGN/PCGN 1956  
JO JO-KA* Al Karak   ar BGN/PCGN 1956  
JO JO-MA* Al Mafraq   ar BGN/PCGN 1956  
JO JO-MD* Mādabā   ar BGN/PCGN 1956  
JO JO-MN* Ma‘ān   ar BGN/PCGN 1956  

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