Data source: ISO

22 rows where country_code = "PG"

View and edit SQL

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
PG PG-CPK Chimbu   en    
PG PG-CPM Central   en    
PG PG-EBR East New Britain   en    
PG PG-EHG Eastern Highlands   en    
PG PG-EPW Enga   en    
PG PG-ESW East Sepik   en    
PG PG-GPK Gulf   en    
PG PG-HLA* Hela   en    
PG PG-JWK* Jiwaka   en    
PG PG-MBA Milne Bay   en    
PG PG-MPL Morobe   en    
PG PG-MPM Madang   en    
PG PG-MRL Manus   en    
PG PG-NCD National Capital District (Port Moresby)   en    
PG PG-NIK New Ireland   en    
PG PG-NPP Northern   en    
PG PG-NSB Bougainville   en    
PG PG-SAN West Sepik   en    
PG PG-SHM Southern Highlands   en    
PG PG-WBK West New Britain   en    
PG PG-WHM Western Highlands   en    
PG PG-WPD Western   en    

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