-
-
Save hmcclungiii/831774a699574f2bb015 to your computer and use it in GitHub Desktop.
An SQL Query to insert 50 U.S. States into a database.Make sure your auto increment is set in MySQL, and Identity_insert is set in MS-SQL.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE [state]( | |
[stateID] [int] IDENTITY(1,1) NOT NULL, | |
[stateCode] [nchar](2) NOT NULL, | |
[stateName] [nvarchar](128) NOT NULL, | |
CONSTRAINT [PK_state] PRIMARY KEY CLUSTERED | |
( [stateID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) | |
ON [PRIMARY] | |
GO | |
INSERT into [state] values ('AL', 'Alabama'), | |
('AK', 'Alaska'), | |
('AZ', 'Arizona'), | |
('AR', 'Arkansas'), | |
('CA', 'California'), | |
('CO', 'Colorado'), | |
('CT', 'Connecticut'), | |
('DE', 'Delaware'), | |
('FL', 'Florida'), | |
('GA', 'Georgia'), | |
('HI', 'Hawaii'), | |
('ID', 'Idaho'), | |
('IL', 'Illinois'), | |
('IN', 'Indiana'), | |
('IA', 'Iowa'), | |
('KS', 'Kansas'), | |
('KY', 'Kentucky'), | |
('LA', 'Louisiana'), | |
('ME', 'Maine'), | |
('MD', 'Maryland'), | |
('MA', 'Massachusetts'), | |
('MI', 'Michigan'), | |
('MN', 'Minnesota'), | |
('MS', 'Mississippi'), | |
('MO', 'Missouri'), | |
('MT', 'Montana'), | |
('NE', 'Nebraska'), | |
('NV', 'Nevada'), | |
('NH', 'New Hampshire'), | |
('NJ', 'New Jersey'), | |
('NM', 'New Mexico'), | |
('NY', 'New York'), | |
('NC', 'North Carolina'), | |
('ND', 'North Dakota'), | |
('OH', 'Ohio'), | |
('OK', 'Oklahoma'), | |
('OR', 'Oregon'), | |
('PA', 'Pennsylvania'), | |
('RI', 'Rhode Island'), | |
('SC', 'South Carolina'), | |
('SD', 'South Dakota'), | |
('TN', 'Tennessee'), | |
('TX', 'Texas'), | |
('UT', 'Utah'), | |
('VT', 'Vermont'), | |
('VA', 'Virginia'), | |
('WA', 'Washington'), | |
('WV', 'West Virginia'), | |
('WI', 'Wisconsin'), | |
('WY', 'Wyoming'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated with the correct list of 50 US States.