Skip to content

Instantly share code, notes, and snippets.

@developnweb
Created September 8, 2023 21:37
Show Gist options
  • Save developnweb/022f7532b9e20f57ac8d7a72f8b6b2ed to your computer and use it in GitHub Desktop.
Save developnweb/022f7532b9e20f57ac8d7a72f8b6b2ed to your computer and use it in GitHub Desktop.
Creación de tabla con campo autoincremental
CREATE TABLE Persona
(
ID int IDENTITY(1,1) PRIMARY KEY,
Nombre varchar(255),
Apellido varchar(255)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment