Data source: ISO

14 rows where language_code = "uz"

View and edit SQL

Suggested facets: name

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
UZ UZ-AN* Andijon   uz    
UZ UZ-BU* Buxoro   uz    
UZ UZ-FA* Farg‘ona   uz    
UZ UZ-JI* Jizzax   uz    
UZ UZ-NG* Namangan   uz    
UZ UZ-NW* Navoiy   uz    
UZ UZ-QA* Qashqadaryo   uz    
UZ UZ-QR* Qoraqalpog‘iston Respublikasi   uz    
UZ UZ-SA* Samarqand   uz    
UZ UZ-SI* Sirdaryo   uz    
UZ UZ-SU* Surxondaryo   uz    
UZ UZ-TK* Toshkent   uz    
UZ UZ-TO* Toshkent   uz    
UZ UZ-XO* Xorazm   uz    

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