-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStaticData-US.sql
More file actions
67 lines (67 loc) · 1.89 KB
/
StaticData-US.sql
File metadata and controls
67 lines (67 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
INSERT INTO [Core_StateOrProvince] ([CountryId], [Code], [Name]) VALUES
('US', 'AL', 'Alabama'),
('US', 'AK', 'Alaska'),
('US', 'AS', 'American Samoa'),
('US', 'AZ', 'Arizona'),
('US', 'AR', 'Arkansas'),
('US', 'AE', 'Armed Forces Africa'),
('US', 'AA', 'Armed Forces Americas'),
('US', 'AE', 'Armed Forces Canada'),
('US', 'AE', 'Armed Forces Europe'),
('US', 'AE', 'Armed Forces Middle East'),
('US', 'AP', 'Armed Forces Pacific'),
('US', 'CA', 'California'),
('US', 'CO', 'Colorado'),
('US', 'CT', 'Connecticut'),
('US', 'DE', 'Delaware'),
('US', 'DC', 'District of Columbia'),
('US', 'FM', 'Federated States Of Micronesia'),
('US', 'FL', 'Florida'),
('US', 'GA', 'Georgia'),
('US', 'GU', 'Guam'),
('US', 'HI', 'Hawaii'),
('US', 'ID', 'Idaho'),
('US', 'IL', 'Illinois'),
('US', 'IN', 'Indiana'),
('US', 'IA', 'Iowa'),
('US', 'KS', 'Kansas'),
('US', 'KY', 'Kentucky'),
('US', 'LA', 'Louisiana'),
('US', 'ME', 'Maine'),
('US', 'MH', 'Marshall Islands'),
('US', 'MD', 'Maryland'),
('US', 'MA', 'Massachusetts'),
('US', 'MI', 'Michigan'),
('US', 'MN', 'Minnesota'),
('US', 'MS', 'Mississippi'),
('US', 'MO', 'Missouri'),
('US', 'MT', 'Montana'),
('US', 'NE', 'Nebraska'),
('US', 'NV', 'Nevada'),
('US', 'NH', 'New Hampshire'),
('US', 'NJ', 'New Jersey'),
('US', 'NM', 'New Mexico'),
('US', 'NY', 'New York'),
('US', 'NC', 'North Carolina'),
('US', 'ND', 'North Dakota'),
('US', 'MP', 'Northern Mariana Islands'),
('US', 'OH', 'Ohio'),
('US', 'OK', 'Oklahoma'),
('US', 'OR', 'Oregon'),
('US', 'PW', 'Palau'),
('US', 'PA', 'Pennsylvania'),
('US', 'PR', 'Puerto Rico'),
('US', 'RI', 'Rhode Island'),
('US', 'SC', 'South Carolina'),
('US', 'SD', 'South Dakota'),
('US', 'TN', 'Tennessee'),
('US', 'TX', 'Texas'),
('US', 'UT', 'Utah'),
('US', 'VT', 'Vermont'),
('US', 'VI', 'Virgin Islands'),
('US', 'VA', 'Virginia'),
--('US', 'WA', 'Washington'),
('US', 'WV', 'West Virginia'),
('US', 'WI', 'Wisconsin'),
('US', 'WY', 'Wyoming')
GO