Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/06/2004, 15:30
Avatar de MrLake
MrLake
 
Fecha de Ingreso: febrero-2003
Ubicación: México
Mensajes: 75
Antigüedad: 22 años, 3 meses
Puntos: 0
Esto es para SQLServer

CREATE TABLE [dbo].[MiTabla] (
[idActividad] [int] IDENTITY (1, 1) NOT FOR REPLICATION NOT NULL)

ON [PRIMARY]
GO


El (1,1) indica el inicio de la identidad y el incremento

Saludos.