SQL Script to Create Country table and populate with all countries

  1. CREATE TABLE [dbo].[Country](  
  2. [ID] [int] IDENTITY(1,1) NOT NULL,  
  3. [CountryName] [nvarchar](100) NOT NULL  
  4. ON [PRIMARY]  
  5.   
  6. GO  
  7. SET IDENTITY_INSERT [dbo].[Country] ON  
  8.   
  9. GO  
  10. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Afghanistan')  
  11. GO  
  12. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Albania')  
  13. GO  
  14. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Algeria')  
  15. GO  
  16. INSERT [dbo].[Country] ([CountryName]) VALUES (N'American Samoa')  
  17. GO  
  18. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Andorra')  
  19. GO  
  20. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Angola')  
  21. GO  
  22. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Anguilla')  
  23. GO  
  24. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Antarctica')  
  25. GO  
  26. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Antigua And Barbuda')  
  27. GO  
  28. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Argentina')  
  29. GO  
  30. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Armenia')  
  31. GO  
  32. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Aruba')  
  33. GO  
  34. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Australia')  
  35. GO  
  36. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Austria')  
  37. GO  
  38. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Azerbaijan')  
  39. GO  
  40. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Bahamas')  
  41. GO  
  42. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Bahrain')  
  43. GO  
  44. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Bangladesh')  
  45. GO  
  46. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Barbados')  
  47. GO  
  48. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Belarus')  
  49. GO  
  50. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Belgium')  
  51. GO  
  52. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Belize')  
  53. GO  
  54. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Benin')  
  55. GO  
  56. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Bermuda')  
  57. GO  
  58. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Bhutan')  
  59. GO  
  60. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Bolivia')  
  61. GO  
  62. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Bosnia And Herzegowina')  
  63. GO  
  64. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Botswana')  
  65. GO  
  66. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Bouvet Island')  
  67. GO  
  68. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Brazil')  
  69. GO  
  70. INSERT [dbo].[Country] ([CountryName]) VALUES (N'British Indian Ocean Territory')  
  71. GO  
  72. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Brunei Darussalam')  
  73. GO  
  74. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Bulgaria')  
  75. GO  
  76. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Burkina Faso')  
  77. GO  
  78. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Burundi')  
  79. GO  
  80. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Cambodia')  
  81. GO  
  82. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Cameroon')  
  83. GO  
  84. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Canada')  
  85. GO  
  86. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Cape Verde')  
  87. GO  
  88. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Cayman Islands')  
  89. GO  
  90. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Central African Republic')  
  91. GO  
  92. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Chad')  
  93. GO  
  94. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Chile')  
  95. GO  
  96. INSERT [dbo].[Country] ([CountryName]) VALUES (N'China')  
  97. GO  
  98. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Christmas Island')  
  99. GO  
  100. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Cocos (Keeling) Islands')  
  101. GO  
  102. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Colombia')  
  103. GO  
  104. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Comoros')  
  105. GO  
  106. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Congo')  
  107. GO  
  108. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Cook Islands')  
  109. GO  
  110. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Costa Rica')  
  111. GO  
  112. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Cote D''Ivoire')  
  113. GO  
  114. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Croatia (Local Name: Hrvatska)')  
  115. GO  
  116. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Cuba')  
  117. GO  
  118. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Cyprus')  
  119. GO  
  120. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Czech Republic')  
  121. GO  
  122. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Denmark')  
  123. GO  
  124. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Djibouti')  
  125. GO  
  126. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Dominica')  
  127. GO  
  128. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Dominican Republic')  
  129. GO  
  130. INSERT [dbo].[Country] ([CountryName]) VALUES (N'East Timor')  
  131. GO  
  132. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Ecuador')  
  133. GO  
  134. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Egypt')  
  135. GO  
  136. INSERT [dbo].[Country] ([CountryName]) VALUES (N'El Salvador')  
  137. GO  
  138. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Equatorial Guinea')  
  139. GO  
  140. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Eritrea')  
  141. GO  
  142. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Estonia')  
  143. GO  
  144. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Ethiopia')  
  145. GO  
  146. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Falkland Islands (Malvinas)')  
  147. GO  
  148. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Faroe Islands')  
  149. GO  
  150. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Fiji')  
  151. GO  
  152. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Finland')  
  153. GO  
  154. INSERT [dbo].[Country] ([CountryName]) VALUES (N'France')  
  155. GO  
  156. INSERT [dbo].[Country] ([CountryName]) VALUES (N'French Guiana')  
  157. GO  
  158. INSERT [dbo].[Country] ([CountryName]) VALUES (N'French Polynesia')  
  159. GO  
  160. INSERT [dbo].[Country] ([CountryName]) VALUES (N'French Southern Territories')  
  161. GO  
  162. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Gabon')  
  163. GO  
  164. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Gambia')  
  165. GO  
  166. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Georgia')  
  167. GO  
  168. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Germany')  
  169. GO  
  170. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Ghana')  
  171. GO  
  172. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Gibraltar')  
  173. GO  
  174. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Greece')  
  175. GO  
  176. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Greenland')  
  177. GO  
  178. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Grenada')  
  179. GO  
  180. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Guadeloupe')  
  181. GO  
  182. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Guam')  
  183. GO  
  184. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Guatemala')  
  185. GO  
  186. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Guinea')  
  187. GO  
  188. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Guinea-Bissau')  
  189. GO  
  190. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Guyana')  
  191. GO  
  192. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Haiti')  
  193. GO  
  194. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Heard And Mc Donald Islands')  
  195. GO  
  196. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Holy See (Vatican City State)')  
  197. GO  
  198. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Honduras')  
  199. GO  
  200. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Hong Kong')  
  201. GO  
  202. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Hungary')  
  203. GO  
  204. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Iceland')  
  205. GO  
  206. INSERT [dbo].[Country] ([CountryName]) VALUES (N'India')  
  207. GO  
  208. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Indonesia')  
  209. GO  
  210. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Iran (Islamic Republic Of)')  
  211. GO  
  212. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Iraq')  
  213. GO  
  214. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Ireland')  
  215. GO  
  216. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Israel')  
  217. GO  
  218. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Italy')  
  219. GO  
  220. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Jamaica')  
  221. GO  
  222. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Japan')  
  223. GO  
  224. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Jordan')  
  225. GO  
  226. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Kazakhstan')  
  227. GO  
  228. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Kenya')  
  229. GO  
  230. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Kiribati')  
  231. GO  
  232. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Korea, Dem People''S Republic')  
  233. GO  
  234. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Korea, Republic Of')  
  235. GO  
  236. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Kuwait')  
  237. GO  
  238. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Kyrgyzstan')  
  239. GO  
  240. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Lao People''S Dem Republic')  
  241. GO  
  242. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Latvia')  
  243. GO  
  244. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Lebanon')  
  245. GO  
  246. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Lesotho')  
  247. GO  
  248. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Liberia')  
  249. GO  
  250. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Libyan Arab Jamahiriya')  
  251. GO  
  252. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Liechtenstein')  
  253. GO  
  254. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Lithuania')  
  255. GO  
  256. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Luxembourg')  
  257. GO  
  258. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Macau')  
  259. GO  
  260. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Macedonia')  
  261. GO  
  262. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Madagascar')  
  263. GO  
  264. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Malawi')  
  265. GO  
  266. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Malaysia')  
  267. GO  
  268. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Maldives')  
  269. GO  
  270. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Mali')  
  271. GO  
  272. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Malta')  
  273. GO  
  274. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Marshall Islands')  
  275. GO  
  276. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Martinique')  
  277. GO  
  278. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Mauritania')  
  279. GO  
  280. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Mauritius')  
  281. GO  
  282. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Mayotte')  
  283. GO  
  284. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Mexico')  
  285. GO  
  286. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Micronesia, Federated States')  
  287. GO  
  288. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Moldova, Republic Of')  
  289. GO  
  290. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Monaco')  
  291. GO  
  292. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Mongolia')  
  293. GO  
  294. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Montserrat')  
  295. GO  
  296. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Morocco')  
  297. GO  
  298. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Mozambique')  
  299. GO  
  300. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Myanmar')  
  301. GO  
  302. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Namibia')  
  303. GO  
  304. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Nauru')  
  305. GO  
  306. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Nepal')  
  307. GO  
  308. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Netherlands')  
  309. GO  
  310. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Netherlands Ant Illes')  
  311. GO  
  312. INSERT [dbo].[Country] ([CountryName]) VALUES (N'New Caledonia')  
  313. GO  
  314. INSERT [dbo].[Country] ([CountryName]) VALUES (N'New Zealand')  
  315. GO  
  316. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Nicaragua')  
  317. GO  
  318. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Niger')  
  319. GO  
  320. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Nigeria')  
  321. GO  
  322. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Niue')  
  323. GO  
  324. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Norfolk Island')  
  325. GO  
  326. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Northern Mariana Islands')  
  327. GO  
  328. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Norway')  
  329. GO  
  330. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Oman')  
  331. GO  
  332. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Pakistan')  
  333. GO  
  334. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Palau')  
  335. GO  
  336. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Panama')  
  337. GO  
  338. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Papua New Guinea')  
  339. GO  
  340. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Paraguay')  
  341. GO  
  342. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Peru')  
  343. GO  
  344. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Philippines')  
  345. GO  
  346. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Pitcairn')  
  347. GO  
  348. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Poland')  
  349. GO  
  350. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Portugal')  
  351. GO  
  352. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Puerto Rico')  
  353. GO  
  354. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Qatar')  
  355. GO  
  356. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Reunion')  
  357. GO  
  358. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Romania')  
  359. GO  
  360. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Russian Federation')  
  361. GO  
  362. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Rwanda')  
  363. GO  
  364. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Saint K Itts And Nevis')  
  365. GO  
  366. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Saint Lucia')  
  367. GO  
  368. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Saint Vincent, The Grenadines')  
  369. GO  
  370. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Samoa')  
  371. GO  
  372. INSERT [dbo].[Country] ([CountryName]) VALUES (N'San Marino')  
  373. GO  
  374. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Sao Tome And Principe')  
  375. GO  
  376. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Saudi Arabia')  
  377. GO  
  378. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Senegal')  
  379. GO  
  380. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Seychelles')  
  381. GO  
  382. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Sierra Leone')  
  383. GO  
  384. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Singapore')  
  385. GO  
  386. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Slovakia (Slovak Republic)')  
  387. GO  
  388. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Slovenia')  
  389. GO  
  390. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Solomon Islands')  
  391. GO  
  392. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Somalia')  
  393. GO  
  394. INSERT [dbo].[Country] ([CountryName]) VALUES (N'South Africa')  
  395. GO  
  396. INSERT [dbo].[Country] ([CountryName]) VALUES (N'South Georgia , S Sandwich Is.')  
  397. GO  
  398. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Spain')  
  399. GO  
  400. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Sri Lanka')  
  401. GO  
  402. INSERT [dbo].[Country] ([CountryName]) VALUES (N'St. Helena')  
  403. GO  
  404. INSERT [dbo].[Country] ([CountryName]) VALUES (N'St. Pierre And Miquelon')  
  405. GO  
  406. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Sudan')  
  407. GO  
  408. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Suriname')  
  409. GO  
  410. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Svalbard, Jan Mayen Islands')  
  411. GO  
  412. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Sw Aziland')  
  413. GO  
  414. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Sweden')  
  415. GO  
  416. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Switzerland')  
  417. GO  
  418. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Syrian Arab Republic')  
  419. GO  
  420. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Taiwan')  
  421. GO  
  422. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Tajikistan')  
  423. GO  
  424. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Tanzania, United Republic Of')  
  425. GO  
  426. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Thailand')  
  427. GO  
  428. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Togo')  
  429. GO  
  430. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Tokelau')  
  431. GO  
  432. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Tonga')  
  433. GO  
  434. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Trinidad And Tobago')  
  435. GO  
  436. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Tunisia')  
  437. GO  
  438. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Turkey')  
  439. GO  
  440. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Turkmenistan')  
  441. GO  
  442. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Turks And Caicos Islands')  
  443. GO  
  444. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Tuvalu')  
  445. GO  
  446. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Uganda')  
  447. GO  
  448. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Ukraine')  
  449. GO  
  450. INSERT [dbo].[Country] ([CountryName]) VALUES (N'United Arab Emirates')  
  451. GO  
  452. INSERT [dbo].[Country] ([CountryName]) VALUES (N'United Kingdom')  
  453. GO  
  454. INSERT [dbo].[Country] ([CountryName]) VALUES (N'United States')  
  455. GO  
  456. INSERT [dbo].[Country] ([CountryName]) VALUES (N'United States Minor Is.')  
  457. GO  
  458. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Uruguay')  
  459. GO  
  460. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Uzbekistan')  
  461. GO  
  462. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Vanuatu')  
  463. GO  
  464. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Venezuela')  
  465. GO  
  466. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Viet Nam')  
  467. GO  
  468. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Virgin Islands (British)')  
  469. GO  
  470. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Virgin Islands (U.S.)')  
  471. GO  
  472. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Wallis And Futuna Islands')  
  473. GO  
  474. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Western Sahara')  
  475. GO  
  476. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Yemen')  
  477. GO  
  478. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Yugoslavia')  
  479. GO  
  480. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Zaire')  
  481. GO  
  482. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Zambia')  
  483. GO  
  484. INSERT [dbo].[Country] ([CountryName]) VALUES (N'Zimbabwe')  
  485. GO  
  486. SET IDENTITY_INSERT [dbo].[Country] OFF  
  487. GO