subdivisions
Data source: ISO
14 rows where language_code = "uz"
This data as json, CSV (advanced)
Suggested facets: name
| Link | country_code | code_31662 | name | local_variant | language_code | romanization_system | parent_subdivision |
|---|---|---|---|---|---|---|---|
| UZ,UZ-AN* | UZ | UZ-AN* | Andijon | uz | |||
| UZ,UZ-BU* | UZ | UZ-BU* | Buxoro | uz | |||
| UZ,UZ-FA* | UZ | UZ-FA* | Farg‘ona | uz | |||
| UZ,UZ-JI* | UZ | UZ-JI* | Jizzax | uz | |||
| UZ,UZ-NG* | UZ | UZ-NG* | Namangan | uz | |||
| UZ,UZ-NW* | UZ | UZ-NW* | Navoiy | uz | |||
| UZ,UZ-QA* | UZ | UZ-QA* | Qashqadaryo | uz | |||
| UZ,UZ-QR* | UZ | UZ-QR* | Qoraqalpog‘iston Respublikasi | uz | |||
| UZ,UZ-SA* | UZ | UZ-SA* | Samarqand | uz | |||
| UZ,UZ-SI* | UZ | UZ-SI* | Sirdaryo | uz | |||
| UZ,UZ-SU* | UZ | UZ-SU* | Surxondaryo | uz | |||
| UZ,UZ-TK* | UZ | UZ-TK* | Toshkent | uz | |||
| UZ,UZ-TO* | UZ | UZ-TO* | Toshkent | uz | |||
| UZ,UZ-XO* | UZ | UZ-XO* | Xorazm | uz |
Advanced export
JSON shape: default, array, newline-delimited, object
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
);