subdivisions
Data source: ISO
16 rows where language_code = "pl"
This data as json, CSV (advanced)
| Link | country_code | code_31662 | name | local_variant | language_code | romanization_system | parent_subdivision |
|---|---|---|---|---|---|---|---|
| PL,PL-02 | PL | PL-02 | Dolnośląskie | pl | |||
| PL,PL-04 | PL | PL-04 | Kujawsko-pomorskie | pl | |||
| PL,PL-06 | PL | PL-06 | Lubelskie | pl | |||
| PL,PL-08 | PL | PL-08 | Lubuskie | pl | |||
| PL,PL-10 | PL | PL-10 | Łódzkie | pl | |||
| PL,PL-12 | PL | PL-12 | Małopolskie | pl | |||
| PL,PL-14 | PL | PL-14 | Mazowieckie | pl | |||
| PL,PL-16 | PL | PL-16 | Opolskie | pl | |||
| PL,PL-18 | PL | PL-18 | Podkarpackie | pl | |||
| PL,PL-20 | PL | PL-20 | Podlaskie | pl | |||
| PL,PL-22 | PL | PL-22 | Pomorskie | pl | |||
| PL,PL-24 | PL | PL-24 | Śląskie | pl | |||
| PL,PL-26 | PL | PL-26 | Świętokrzyskie | pl | |||
| PL,PL-28 | PL | PL-28 | Warmińsko-mazurskie | pl | |||
| PL,PL-30 | PL | PL-30 | Wielkopolskie | pl | |||
| PL,PL-32 | PL | PL-32 | Zachodniopomorskie | pl |
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
);