Created
September 8, 2023 21:37
-
-
Save developnweb/022f7532b9e20f57ac8d7a72f8b6b2ed to your computer and use it in GitHub Desktop.
Creación de tabla con campo autoincremental
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 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