Data source: ISO

27 rows where country_code = "SC"

View and edit SQL

Suggested facets: language_code

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
SC SC-01* Anse aux Pins   fr    
SC SC-02* Anse Boileau   fr    
SC SC-03* Anse Étoile   fr    
SC SC-04* O Kap   -    
SC SC-05* Anse Royale   fr    
SC SC-06* Be Lazar   -    
SC SC-07* Be Sent Ann   -    
SC SC-08* Bovalon   -    
SC SC-09* Beler   -    
SC SC-10* Belonm   -    
SC SC-11* Kaskad   -    
SC SC-12* Glasi   -    
SC SC-13* Grand'Anse Mahé   fr    
SC SC-14* Grand'Anse Praslin   fr    
SC SC-15* Ladig   -    
SC SC-16* Larivyer Anglez   -    
SC SC-17* Mont Buxton   fr    
SC SC-18* Mont Fleuri   fr    
SC SC-19* Plezans   -    
SC SC-20* Pwent Lari   -    
SC SC-21* Port Glaud   fr    
SC SC-22* Sen Lwi   -    
SC SC-23* Takamaka   fr    
SC SC-24* Les Mamelles   fr    
SC SC-25* Ros Kaiman   -    
SC SC-26* Île Persévérance I   fr    
SC SC-27* Île Persévérance II   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
);