Pedro,
Utilize o script abaixo:
CREATE TABEL TB_TESTE (
CAMPO1 int NOT NULL IDENTITY(1,1),
CAMPO2 int NOT NULL,
CAMPO3 int NULL,
CAMPO4 int NULL,
CAMPO5 int NULL
)
GO
INSERT INTO TB_TESTE (CAMPO2,CAMPO3,CAMPO4,CAMPO5)
VALUES (0, NULL, NULL, NULL);
GO 30
Se ajudou na sua solução, não esqueça de marcar como resposta !
Abraços,
Durval Ramos
Microsoft Partner | MTA | MCSA - SQL Server 2012 | MCSE - Data Platform
----------------------------------
Se foi resolvido clique "Marcar como resposta"
e se foi útil "Votar como Útil"