Skip to content

Instantly share code, notes, and snippets.

View AngelReyesEspinal's full-sized avatar
🎯
Focusing

Angel Reyes AngelReyesEspinal

🎯
Focusing
  • República Domicana
View GitHub Profile
@raylinanthony
raylinanthony / index.html
Created July 17, 2018 23:04
Lista de provincias de Republica Dominicana en HTML
<select>
<option>Santo Domingo</option>
<option>Distrito Nacional</option>
<option>Santiago</option>
<option>San Cristóbal</option>
<option>La Vega</option>
<option>Puerto Plata</option>
<option>San Pedro de Macorís</option>
<option>Duarte</option>
<option>La Altagracia</option>
@JeremyMorgan
JeremyMorgan / states.sql
Last active October 3, 2023 12:55
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.
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]