Skip to content

Instantly share code, notes, and snippets.

@Eskimon
Created July 11, 2019 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Eskimon/cebe132c1cb5ba1d569020df30e9f465 to your computer and use it in GitHub Desktop.
Save Eskimon/cebe132c1cb5ba1d569020df30e9f465 to your computer and use it in GitHub Desktop.
Countries ISO 3166, names, slugs SQL insert into list
-- based on https://en.wikipedia.org/wiki/ISO_3166-1 list
-- Columns are
-- 1. Country name slug
-- 2. Country name
-- 3. Country alpha-2 code (ISO 3166-1 alpha-2)
-- 4. Country alpha-3 code (ISO 3166-1 alpha-3)
-- 5. Country numerical code (ISO 3166-1 numeric)
-- 6. Country ISO_3166-2 code
INSERT INTO
`countries` ("slug", "name", "alpha2", "alpha3", "numerical", "iso_3166_2")
VALUES
("afghanistan", "Afghanistan", "AF", "AFG", 004, "ISO 3166-2:AF"),
("aland-islands", "Åland Islands", "AX", "ALA", 248, "ISO 3166-2:AX"),
("albania", "Albania", "AL", "ALB", 008, "ISO 3166-2:AL"),
("algeria", "Algeria", "DZ", "DZA", 012, "ISO 3166-2:DZ"),
("american-samoa", "American Samoa", "AS", "ASM", 016, "ISO 3166-2:AS"),
("andorra", "Andorra", "AD", "AND", 020, "ISO 3166-2:AD"),
("angola", "Angola", "AO", "AGO", 024, "ISO 3166-2:AO"),
("anguilla", "Anguilla", "AI", "AIA", 660, "ISO 3166-2:AI"),
("antarctica", "Antarctica", "AQ", "ATA", 010, "ISO 3166-2:AQ"),
("antigua-and-barbuda", "Antigua and Barbuda", "AG", "ATG", 028, "ISO 3166-2:AG"),
("argentina", "Argentina", "AR", "ARG", 032, "ISO 3166-2:AR"),
("armenia", "Armenia", "AM", "ARM", 051, "ISO 3166-2:AM"),
("aruba", "Aruba", "AW", "ABW", 533, "ISO 3166-2:AW"),
("australia", "Australia", "AU", "AUS", 036, "ISO 3166-2:AU"),
("austria", "Austria", "AT", "AUT", 040, "ISO 3166-2:AT"),
("azerbaijan", "Azerbaijan", "AZ", "AZE", 031, "ISO 3166-2:AZ"),
("bahamas", "Bahamas", "BS", "BHS", 044, "ISO 3166-2:BS"),
("bahrain", "Bahrain", "BH", "BHR", 048, "ISO 3166-2:BH"),
("bangladesh", "Bangladesh", "BD", "BGD", 050, "ISO 3166-2:BD"),
("barbados", "Barbados", "BB", "BRB", 052, "ISO 3166-2:BB"),
("belarus", "Belarus", "BY", "BLR", 112, "ISO 3166-2:BY"),
("belgium", "Belgium", "BE", "BEL", 056, "ISO 3166-2:BE"),
("belize", "Belize", "BZ", "BLZ", 084, "ISO 3166-2:BZ"),
("benin", "Benin", "BJ", "BEN", 204, "ISO 3166-2:BJ"),
("bermuda", "Bermuda", "BM", "BMU", 060, "ISO 3166-2:BM"),
("bhutan", "Bhutan", "BT", "BTN", 064, "ISO 3166-2:BT"),
("bolivia-plurinational-state-of", "Bolivia (Plurinational State of)", "BO", "BOL", 068, "ISO 3166-2:BO"),
("bonaire-sint-eustatius-and-saba", "Bonaire, Sint Eustatius and Saba", "BQ", "BES", 535, "ISO 3166-2:BQ"),
("bosnia-and-herzegovina", "Bosnia and Herzegovina", "BA", "BIH", 070, "ISO 3166-2:BA"),
("botswana", "Botswana", "BW", "BWA", 072, "ISO 3166-2:BW"),
("bouvet-island", "Bouvet Island", "BV", "BVT", 074, "ISO 3166-2:BV"),
("brazil", "Brazil", "BR", "BRA", 076, "ISO 3166-2:BR"),
("british-indian-ocean-territory", "British Indian Ocean Territory", "IO", "IOT", 086, "ISO 3166-2:IO"),
("brunei-darussalam", "Brunei Darussalam", "BN", "BRN", 096, "ISO 3166-2:BN"),
("bulgaria", "Bulgaria", "BG", "BGR", 100, "ISO 3166-2:BG"),
("burkina-faso", "Burkina Faso", "BF", "BFA", 854, "ISO 3166-2:BF"),
("burundi", "Burundi", "BI", "BDI", 108, "ISO 3166-2:BI"),
("cabo-verde", "Cabo Verde", "CV", "CPV", 132, "ISO 3166-2:CV"),
("cambodia", "Cambodia", "KH", "KHM", 116, "ISO 3166-2:KH"),
("cameroon", "Cameroon", "CM", "CMR", 120, "ISO 3166-2:CM"),
("canada", "Canada", "CA", "CAN", 124, "ISO 3166-2:CA"),
("cayman-islands", "Cayman Islands", "KY", "CYM", 136, "ISO 3166-2:KY"),
("central-african-republic", "Central African Republic", "CF", "CAF", 140, "ISO 3166-2:CF"),
("chad", "Chad", "TD", "TCD", 148, "ISO 3166-2:TD"),
("chile", "Chile", "CL", "CHL", 152, "ISO 3166-2:CL"),
("china", "China", "CN", "CHN", 156, "ISO 3166-2:CN"),
("christmas-island", "Christmas Island", "CX", "CXR", 162, "ISO 3166-2:CX"),
("cocos-keeling-islands", "Cocos (Keeling) Islands", "CC", "CCK", 166, "ISO 3166-2:CC"),
("colombia", "Colombia", "CO", "COL", 170, "ISO 3166-2:CO"),
("comoros", "Comoros", "KM", "COM", 174, "ISO 3166-2:KM"),
("congo", "Congo", "CG", "COG", 178, "ISO 3166-2:CG"),
("congo-democratic-republic-of-the", "Congo, Democratic Republic of the", "CD", "COD", 180, "ISO 3166-2:CD"),
("cook-islands", "Cook Islands", "CK", "COK", 184, "ISO 3166-2:CK"),
("costa-rica", "Costa Rica", "CR", "CRI", 188, "ISO 3166-2:CR"),
("cote-divoire", "Côte d'Ivoire", "CI", "CIV", 384, "ISO 3166-2:CI"),
("croatia", "Croatia", "HR", "HRV", 191, "ISO 3166-2:HR"),
("cuba", "Cuba", "CU", "CUB", 192, "ISO 3166-2:CU"),
("curacao", "Curaçao", "CW", "CUW", 531, "ISO 3166-2:CW"),
("cyprus", "Cyprus", "CY", "CYP", 196, "ISO 3166-2:CY"),
("czechia", "Czechia", "CZ", "CZE", 203, "ISO 3166-2:CZ"),
("denmark", "Denmark", "DK", "DNK", 208, "ISO 3166-2:DK"),
("djibouti", "Djibouti", "DJ", "DJI", 262, "ISO 3166-2:DJ"),
("dominica", "Dominica", "DM", "DMA", 212, "ISO 3166-2:DM"),
("dominican-republic", "Dominican Republic", "DO", "DOM", 214, "ISO 3166-2:DO"),
("ecuador", "Ecuador", "EC", "ECU", 218, "ISO 3166-2:EC"),
("egypt", "Egypt", "EG", "EGY", 818, "ISO 3166-2:EG"),
("el-salvador", "El Salvador", "SV", "SLV", 222, "ISO 3166-2:SV"),
("equatorial-guinea", "Equatorial Guinea", "GQ", "GNQ", 226, "ISO 3166-2:GQ"),
("eritrea", "Eritrea", "ER", "ERI", 232, "ISO 3166-2:ER"),
("estonia", "Estonia", "EE", "EST", 233, "ISO 3166-2:EE"),
("eswatini", "Eswatini", "SZ", "SWZ", 748, "ISO 3166-2:SZ"),
("ethiopia", "Ethiopia", "ET", "ETH", 231, "ISO 3166-2:ET"),
("falkland-islands-malvinas", "Falkland Islands (Malvinas)", "FK", "FLK", 238, "ISO 3166-2:FK"),
("faroe-islands", "Faroe Islands", "FO", "FRO", 234, "ISO 3166-2:FO"),
("fiji", "Fiji", "FJ", "FJI", 242, "ISO 3166-2:FJ"),
("finland", "Finland", "FI", "FIN", 246, "ISO 3166-2:FI"),
("france", "France", "FR", "FRA", 250, "ISO 3166-2:FR"),
("french-guiana", "French Guiana", "GF", "GUF", 254, "ISO 3166-2:GF"),
("french-polynesia", "French Polynesia", "PF", "PYF", 258, "ISO 3166-2:PF"),
("french-southern-territories", "French Southern Territories", "TF", "ATF", 260, "ISO 3166-2:TF"),
("gabon", "Gabon", "GA", "GAB", 266, "ISO 3166-2:GA"),
("gambia", "Gambia", "GM", "GMB", 270, "ISO 3166-2:GM"),
("georgia", "Georgia", "GE", "GEO", 268, "ISO 3166-2:GE"),
("germany", "Germany", "DE", "DEU", 276, "ISO 3166-2:DE"),
("ghana", "Ghana", "GH", "GHA", 288, "ISO 3166-2:GH"),
("gibraltar", "Gibraltar", "GI", "GIB", 292, "ISO 3166-2:GI"),
("greece", "Greece", "GR", "GRC", 300, "ISO 3166-2:GR"),
("greenland", "Greenland", "GL", "GRL", 304, "ISO 3166-2:GL"),
("grenada", "Grenada", "GD", "GRD", 308, "ISO 3166-2:GD"),
("guadeloupe", "Guadeloupe", "GP", "GLP", 312, "ISO 3166-2:GP"),
("guam", "Guam", "GU", "GUM", 316, "ISO 3166-2:GU"),
("guatemala", "Guatemala", "GT", "GTM", 320, "ISO 3166-2:GT"),
("guernsey", "Guernsey", "GG", "GGY", 831, "ISO 3166-2:GG"),
("guinea", "Guinea", "GN", "GIN", 324, "ISO 3166-2:GN"),
("guinea-bissau", "Guinea-Bissau", "GW", "GNB", 624, "ISO 3166-2:GW"),
("guyana", "Guyana", "GY", "GUY", 328, "ISO 3166-2:GY"),
("haiti", "Haiti", "HT", "HTI", 332, "ISO 3166-2:HT"),
("heard-island-and-mcdonald-islands", "Heard Island and McDonald Islands", "HM", "HMD", 334, "ISO 3166-2:HM"),
("holy-see", "Holy See", "VA", "VAT", 336, "ISO 3166-2:VA"),
("honduras", "Honduras", "HN", "HND", 340, "ISO 3166-2:HN"),
("hong-kong", "Hong Kong", "HK", "HKG", 344, "ISO 3166-2:HK"),
("hungary", "Hungary", "HU", "HUN", 348, "ISO 3166-2:HU"),
("iceland", "Iceland", "IS", "ISL", 352, "ISO 3166-2:IS"),
("india", "India", "IN", "IND", 356, "ISO 3166-2:IN"),
("indonesia", "Indonesia", "ID", "IDN", 360, "ISO 3166-2:ID"),
("iran-islamic-republic-of", "Iran (Islamic Republic of)", "IR", "IRN", 364, "ISO 3166-2:IR"),
("iraq", "Iraq", "IQ", "IRQ", 368, "ISO 3166-2:IQ"),
("ireland", "Ireland", "IE", "IRL", 372, "ISO 3166-2:IE"),
("isle-of-man", "Isle of Man", "IM", "IMN", 833, "ISO 3166-2:IM"),
("israel", "Israel", "IL", "ISR", 376, "ISO 3166-2:IL"),
("italy", "Italy", "IT", "ITA", 380, "ISO 3166-2:IT"),
("jamaica", "Jamaica", "JM", "JAM", 388, "ISO 3166-2:JM"),
("japan", "Japan", "JP", "JPN", 392, "ISO 3166-2:JP"),
("jersey", "Jersey", "JE", "JEY", 832, "ISO 3166-2:JE"),
("jordan", "Jordan", "JO", "JOR", 400, "ISO 3166-2:JO"),
("kazakhstan", "Kazakhstan", "KZ", "KAZ", 398, "ISO 3166-2:KZ"),
("kenya", "Kenya", "KE", "KEN", 404, "ISO 3166-2:KE"),
("kiribati", "Kiribati", "KI", "KIR", 296, "ISO 3166-2:KI"),
("korea-democratic-peoples-republic-of", "Korea (Democratic People's Republic of)", "KP", "PRK", 408, "ISO 3166-2:KP"),
("korea-republic-of", "Korea, Republic of", "KR", "KOR", 410, "ISO 3166-2:KR"),
("kuwait", "Kuwait", "KW", "KWT", 414, "ISO 3166-2:KW"),
("kyrgyzstan", "Kyrgyzstan", "KG", "KGZ", 417, "ISO 3166-2:KG"),
("lao-peoples-democratic-republic", "Lao People's Democratic Republic", "LA", "LAO", 418, "ISO 3166-2:LA"),
("latvia", "Latvia", "LV", "LVA", 428, "ISO 3166-2:LV"),
("lebanon", "Lebanon", "LB", "LBN", 422, "ISO 3166-2:LB"),
("lesotho", "Lesotho", "LS", "LSO", 426, "ISO 3166-2:LS"),
("liberia", "Liberia", "LR", "LBR", 430, "ISO 3166-2:LR"),
("libya", "Libya", "LY", "LBY", 434, "ISO 3166-2:LY"),
("liechtenstein", "Liechtenstein", "LI", "LIE", 438, "ISO 3166-2:LI"),
("lithuania", "Lithuania", "LT", "LTU", 440, "ISO 3166-2:LT"),
("luxembourg", "Luxembourg", "LU", "LUX", 442, "ISO 3166-2:LU"),
("macao", "Macao", "MO", "MAC", 446, "ISO 3166-2:MO"),
("madagascar", "Madagascar", "MG", "MDG", 450, "ISO 3166-2:MG"),
("malawi", "Malawi", "MW", "MWI", 454, "ISO 3166-2:MW"),
("malaysia", "Malaysia", "MY", "MYS", 458, "ISO 3166-2:MY"),
("maldives", "Maldives", "MV", "MDV", 462, "ISO 3166-2:MV"),
("mali", "Mali", "ML", "MLI", 466, "ISO 3166-2:ML"),
("malta", "Malta", "MT", "MLT", 470, "ISO 3166-2:MT"),
("marshall-islands", "Marshall Islands", "MH", "MHL", 584, "ISO 3166-2:MH"),
("martinique", "Martinique", "MQ", "MTQ", 474, "ISO 3166-2:MQ"),
("mauritania", "Mauritania", "MR", "MRT", 478, "ISO 3166-2:MR"),
("mauritius", "Mauritius", "MU", "MUS", 480, "ISO 3166-2:MU"),
("mayotte", "Mayotte", "YT", "MYT", 175, "ISO 3166-2:YT"),
("mexico", "Mexico", "MX", "MEX", 484, "ISO 3166-2:MX"),
("micronesia-federated-states-of", "Micronesia (Federated States of)", "FM", "FSM", 583, "ISO 3166-2:FM"),
("moldova-republic-of", "Moldova, Republic of", "MD", "MDA", 498, "ISO 3166-2:MD"),
("monaco", "Monaco", "MC", "MCO", 492, "ISO 3166-2:MC"),
("mongolia", "Mongolia", "MN", "MNG", 496, "ISO 3166-2:MN"),
("montenegro", "Montenegro", "ME", "MNE", 499, "ISO 3166-2:ME"),
("montserrat", "Montserrat", "MS", "MSR", 500, "ISO 3166-2:MS"),
("morocco", "Morocco", "MA", "MAR", 504, "ISO 3166-2:MA"),
("mozambique", "Mozambique", "MZ", "MOZ", 508, "ISO 3166-2:MZ"),
("myanmar", "Myanmar", "MM", "MMR", 104, "ISO 3166-2:MM"),
("namibia", "Namibia", "NA", "NAM", 516, "ISO 3166-2:NA"),
("nauru", "Nauru", "NR", "NRU", 520, "ISO 3166-2:NR"),
("nepal", "Nepal", "NP", "NPL", 524, "ISO 3166-2:NP"),
("netherlands", "Netherlands", "NL", "NLD", 528, "ISO 3166-2:NL"),
("new-caledonia", "New Caledonia", "NC", "NCL", 540, "ISO 3166-2:NC"),
("new-zealand", "New Zealand", "NZ", "NZL", 554, "ISO 3166-2:NZ"),
("nicaragua", "Nicaragua", "NI", "NIC", 558, "ISO 3166-2:NI"),
("niger", "Niger", "NE", "NER", 562, "ISO 3166-2:NE"),
("nigeria", "Nigeria", "NG", "NGA", 566, "ISO 3166-2:NG"),
("niue", "Niue", "NU", "NIU", 570, "ISO 3166-2:NU"),
("norfolk-island", "Norfolk Island", "NF", "NFK", 574, "ISO 3166-2:NF"),
("north-macedonia", "North Macedonia", "MK", "MKD", 807, "ISO 3166-2:MK"),
("northern-mariana-islands", "Northern Mariana Islands", "MP", "MNP", 580, "ISO 3166-2:MP"),
("norway", "Norway", "NO", "NOR", 578, "ISO 3166-2:NO"),
("oman", "Oman", "OM", "OMN", 512, "ISO 3166-2:OM"),
("pakistan", "Pakistan", "PK", "PAK", 586, "ISO 3166-2:PK"),
("palau", "Palau", "PW", "PLW", 585, "ISO 3166-2:PW"),
("palestine-state-of", "Palestine, State of", "PS", "PSE", 275, "ISO 3166-2:PS"),
("panama", "Panama", "PA", "PAN", 591, "ISO 3166-2:PA"),
("papua-new-guinea", "Papua New Guinea", "PG", "PNG", 598, "ISO 3166-2:PG"),
("paraguay", "Paraguay", "PY", "PRY", 600, "ISO 3166-2:PY"),
("peru", "Peru", "PE", "PER", 604, "ISO 3166-2:PE"),
("philippines", "Philippines", "PH", "PHL", 608, "ISO 3166-2:PH"),
("pitcairn", "Pitcairn", "PN", "PCN", 612, "ISO 3166-2:PN"),
("poland", "Poland", "PL", "POL", 616, "ISO 3166-2:PL"),
("portugal", "Portugal", "PT", "PRT", 620, "ISO 3166-2:PT"),
("puerto-rico", "Puerto Rico", "PR", "PRI", 630, "ISO 3166-2:PR"),
("qatar", "Qatar", "QA", "QAT", 634, "ISO 3166-2:QA"),
("reunion", "Réunion", "RE", "REU", 638, "ISO 3166-2:RE"),
("romania", "Romania", "RO", "ROU", 642, "ISO 3166-2:RO"),
("russian-federation", "Russian Federation", "RU", "RUS", 643, "ISO 3166-2:RU"),
("rwanda", "Rwanda", "RW", "RWA", 646, "ISO 3166-2:RW"),
("saint-barthelemy", "Saint Barthélemy", "BL", "BLM", 652, "ISO 3166-2:BL"),
("saint-helena-ascension-and-tristan-da-cunha", "Saint Helena, Ascension and Tristan da Cunha", "SH", "SHN", 654, "ISO 3166-2:SH"),
("saint-kitts-and-nevis", "Saint Kitts and Nevis", "KN", "KNA", 659, "ISO 3166-2:KN"),
("saint-lucia", "Saint Lucia", "LC", "LCA", 662, "ISO 3166-2:LC"),
("saint-martin-french-part", "Saint Martin (French part)", "MF", "MAF", 663, "ISO 3166-2:MF"),
("saint-pierre-and-miquelon", "Saint Pierre and Miquelon", "PM", "SPM", 666, "ISO 3166-2:PM"),
("saint-vincent-and-the-grenadines", "Saint Vincent and the Grenadines", "VC", "VCT", 670, "ISO 3166-2:VC"),
("samoa", "Samoa", "WS", "WSM", 882, "ISO 3166-2:WS"),
("san-marino", "San Marino", "SM", "SMR", 674, "ISO 3166-2:SM"),
("sao-tome-and-principe", "Sao Tome and Principe", "ST", "STP", 678, "ISO 3166-2:ST"),
("saudi-arabia", "Saudi Arabia", "SA", "SAU", 682, "ISO 3166-2:SA"),
("senegal", "Senegal", "SN", "SEN", 686, "ISO 3166-2:SN"),
("serbia", "Serbia", "RS", "SRB", 688, "ISO 3166-2:RS"),
("seychelles", "Seychelles", "SC", "SYC", 690, "ISO 3166-2:SC"),
("sierra-leone", "Sierra Leone", "SL", "SLE", 694, "ISO 3166-2:SL"),
("singapore", "Singapore", "SG", "SGP", 702, "ISO 3166-2:SG"),
("sint-maarten-dutch-part", "Sint Maarten (Dutch part)", "SX", "SXM", 534, "ISO 3166-2:SX"),
("slovakia", "Slovakia", "SK", "SVK", 703, "ISO 3166-2:SK"),
("slovenia", "Slovenia", "SI", "SVN", 705, "ISO 3166-2:SI"),
("solomon-islands", "Solomon Islands", "SB", "SLB", 090, "ISO 3166-2:SB"),
("somalia", "Somalia", "SO", "SOM", 706, "ISO 3166-2:SO"),
("south-africa", "South Africa", "ZA", "ZAF", 710, "ISO 3166-2:ZA"),
("south-georgia-and-the-south-sandwich-islands", "South Georgia and the South Sandwich Islands", "GS", "SGS", 239, "ISO 3166-2:GS"),
("south-sudan", "South Sudan", "SS", "SSD", 728, "ISO 3166-2:SS"),
("spain", "Spain", "ES", "ESP", 724, "ISO 3166-2:ES"),
("sri-lanka", "Sri Lanka", "LK", "LKA", 144, "ISO 3166-2:LK"),
("sudan", "Sudan", "SD", "SDN", 729, "ISO 3166-2:SD"),
("suriname", "Suriname", "SR", "SUR", 740, "ISO 3166-2:SR"),
("svalbard-and-jan-mayen", "Svalbard and Jan Mayen", "SJ", "SJM", 744, "ISO 3166-2:SJ"),
("sweden", "Sweden", "SE", "SWE", 752, "ISO 3166-2:SE"),
("switzerland", "Switzerland", "CH", "CHE", 756, "ISO 3166-2:CH"),
("syrian-arab-republic", "Syrian Arab Republic", "SY", "SYR", 760, "ISO 3166-2:SY"),
("taiwan-province-of-chinaa", "Taiwan, Province of China[a]", "TW", "TWN", 158, "ISO 3166-2:TW"),
("tajikistan", "Tajikistan", "TJ", "TJK", 762, "ISO 3166-2:TJ"),
("tanzania-united-republic-of", "Tanzania, United Republic of", "TZ", "TZA", 834, "ISO 3166-2:TZ"),
("thailand", "Thailand", "TH", "THA", 764, "ISO 3166-2:TH"),
("timor-leste", "Timor-Leste", "TL", "TLS", 626, "ISO 3166-2:TL"),
("togo", "Togo", "TG", "TGO", 768, "ISO 3166-2:TG"),
("tokelau", "Tokelau", "TK", "TKL", 772, "ISO 3166-2:TK"),
("tonga", "Tonga", "TO", "TON", 776, "ISO 3166-2:TO"),
("trinidad-and-tobago", "Trinidad and Tobago", "TT", "TTO", 780, "ISO 3166-2:TT"),
("tunisia", "Tunisia", "TN", "TUN", 788, "ISO 3166-2:TN"),
("turkey", "Turkey", "TR", "TUR", 792, "ISO 3166-2:TR"),
("turkmenistan", "Turkmenistan", "TM", "TKM", 795, "ISO 3166-2:TM"),
("turks-and-caicos-islands", "Turks and Caicos Islands", "TC", "TCA", 796, "ISO 3166-2:TC"),
("tuvalu", "Tuvalu", "TV", "TUV", 798, "ISO 3166-2:TV"),
("uganda", "Uganda", "UG", "UGA", 800, "ISO 3166-2:UG"),
("ukraine", "Ukraine", "UA", "UKR", 804, "ISO 3166-2:UA"),
("united-arab-emirates", "United Arab Emirates", "AE", "ARE", 784, "ISO 3166-2:AE"),
("united-kingdom-of-great-britain-and-northern-ireland", "United Kingdom of Great Britain and Northern Ireland", "GB", "GBR", 826, "ISO 3166-2:GB"),
("united-states-of-america", "United States of America", "US", "USA", 840, "ISO 3166-2:US"),
("united-states-minor-outlying-islands", "United States Minor Outlying Islands", "UM", "UMI", 581, "ISO 3166-2:UM"),
("uruguay", "Uruguay", "UY", "URY", 858, "ISO 3166-2:UY"),
("uzbekistan", "Uzbekistan", "UZ", "UZB", 860, "ISO 3166-2:UZ"),
("vanuatu", "Vanuatu", "VU", "VUT", 548, "ISO 3166-2:VU"),
("venezuela-bolivarian-republic-of", "Venezuela (Bolivarian Republic of)", "VE", "VEN", 862, "ISO 3166-2:VE"),
("viet-nam", "Viet Nam", "VN", "VNM", 704, "ISO 3166-2:VN"),
("virgin-islands-british", "Virgin Islands (British)", "VG", "VGB", 092, "ISO 3166-2:VG"),
("virgin-islands-us", "Virgin Islands (U.S.)", "VI", "VIR", 850, "ISO 3166-2:VI"),
("wallis-and-futuna", "Wallis and Futuna", "WF", "WLF", 876, "ISO 3166-2:WF"),
("western-sahara", "Western Sahara", "EH", "ESH", 732, "ISO 3166-2:EH"),
("yemen", "Yemen", "YE", "YEM", 887, "ISO 3166-2:YE"),
("zambia", "Zambia", "ZM", "ZMB", 894, "ISO 3166-2:ZM"),
("zimbabwe", "Zimbabwe", "ZW", "ZWE", 716, "ISO 3166-2:ZW");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment