subdivisions
Data source: ISO
14 rows where country_code = "SN"
This data as json, CSV (advanced)
| Link | country_code | code_31662 | name | local_variant | language_code | romanization_system | parent_subdivision |
|---|---|---|---|---|---|---|---|
| SN,SN-DB | SN | SN-DB | Diourbel | fr | |||
| SN,SN-DK | SN | SN-DK | Dakar | fr | |||
| SN,SN-FK | SN | SN-FK | Fatick | fr | |||
| SN,SN-KA* | SN | SN-KA* | Kaffrine | fr | |||
| SN,SN-KD | SN | SN-KD | Kolda | fr | |||
| SN,SN-KE* | SN | SN-KE* | Kédougou | fr | |||
| SN,SN-KL | SN | SN-KL | Kaolack | fr | |||
| SN,SN-LG | SN | SN-LG | Louga | fr | |||
| SN,SN-MT* | SN | SN-MT* | Matam | fr | |||
| SN,SN-SE* | SN | SN-SE* | Sédhiou | fr | |||
| SN,SN-SL | SN | SN-SL | Saint-Louis | fr | |||
| SN,SN-TC | SN | SN-TC | Tambacounda | fr | |||
| SN,SN-TH | SN | SN-TH | Thiès | fr | |||
| SN,SN-ZG | SN | SN-ZG | Ziguinchor | fr |
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
);