Data source: ISO

17 rows where country_code = "MC"

View and edit SQL

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
MC MC-CL* La Colle   fr    
MC MC-CO* La Condamine   fr    
MC MC-FO* Fontvieille   fr    
MC MC-GA* La Gare   fr    
MC MC-JE* Jardin Exotique   fr    
MC MC-LA* Larvotto   fr    
MC MC-MA* Malbousquet   fr    
MC MC-MC* Monte-Carlo   fr    
MC MC-MG* Moneghetti   fr    
MC MC-MO* Monaco-Ville   fr    
MC MC-MU* Moulins   fr    
MC MC-PH* Port-Hercule   fr    
MC MC-SD* Sainte-Dévote   fr    
MC MC-SO* La Source   fr    
MC MC-SP* Spélugues   fr    
MC MC-SR* Saint-Roman   fr    
MC MC-VR* Vallon de la Rousse   fr    

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