Posts by footswitch • 36 points
1 post
-
2
votes1
answer358
viewsA: How to set the boot value of a PRIMARY KEY field set to IDENTITY in SQL Server?
The line that defines this field would be something like: [id_exemplo] [int] IDENTITY(5,1) PRIMARY KEY NOT NULL, -- IDENTITY(x,y) em que x é o primeiro valor e y o incremento para cada novo registo…