Data source: ISO

57 rows where country_code = "US"

View and edit SQL

Link country_code code_31662 name local_variant language_code romanization_system parent_subdivision
US US-AK Alaska   en    
US US-AL Alabama   en    
US US-AR Arkansas   en    
US US-AS American Samoa (see also separate country code entry under AS)   en    
US US-AZ Arizona   en    
US US-CA California   en    
US US-CO Colorado   en    
US US-CT Connecticut   en    
US US-DC District of Columbia   en    
US US-DE Delaware   en    
US US-FL Florida   en    
US US-GA Georgia   en    
US US-GU Guam (see also separate country code entry under GU)   en    
US US-HI Hawaii   en    
US US-IA Iowa   en    
US US-ID Idaho   en    
US US-IL Illinois   en    
US US-IN Indiana   en    
US US-KS Kansas   en    
US US-KY Kentucky   en    
US US-LA Louisiana   en    
US US-MA Massachusetts   en    
US US-MD Maryland   en    
US US-ME Maine   en    
US US-MI Michigan   en    
US US-MN Minnesota   en    
US US-MO Missouri   en    
US US-MP Northern Mariana Islands (see also separate country code entry under MP)   en    
US US-MS Mississippi   en    
US US-MT Montana   en    
US US-NC North Carolina   en    
US US-ND North Dakota   en    
US US-NE Nebraska   en    
US US-NH New Hampshire   en    
US US-NJ New Jersey   en    
US US-NM New Mexico   en    
US US-NV Nevada   en    
US US-NY New York   en    
US US-OH Ohio   en    
US US-OK Oklahoma   en    
US US-OR Oregon   en    
US US-PA Pennsylvania   en    
US US-PR Puerto Rico (see also separate country code entry under PR)   en    
US US-RI Rhode Island   en    
US US-SC South Carolina   en    
US US-SD South Dakota   en    
US US-TN Tennessee   en    
US US-TX Texas   en    
US US-UM United States Minor Outlying Islands (see also separate country code entry under UM)   en    
US US-UT Utah   en    
US US-VA Virginia   en    
US US-VI Virgin Islands, U.S. (see also separate country code entry under VI)   en    
US US-VT Vermont   en    
US US-WA Washington   en    
US US-WI Wisconsin   en    
US US-WV West Virginia   en    
US US-WY Wyoming   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
);