Data source: ISO

14 rows where country_code = "NR"

View and edit SQL

Suggested facets: local_variant

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
NR NR-01* Aiwo   na    
NR NR-02* Anabar   na    
NR NR-03* Anetan   na    
NR NR-04* Anibare   na    
NR NR-05* Baitsi Baiti na    
NR NR-06* Boe   na    
NR NR-07* Buada   na    
NR NR-08* Denigomodu   na    
NR NR-09* Ewa   na    
NR NR-10* Ijuw   na    
NR NR-11* Meneng   na    
NR NR-12* Nibok   na    
NR NR-13* Uaboe   na    
NR NR-14* Yaren   na    

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