“coluna de identidade no servidor SQL” Respostas de código

Como obter o valor de identidade atual da tabela no SQL Server

SELECT IDENT_CURRENT('Pets') AS Result;
Hilarious Hamerkop

coluna de identidade no servidor SQL

/* To explicitly supply a value for identity column*/
/*first turn on identity_insert  set  identity_insert (Table_Name) on*/
SET IDENTITY_INSERT (Table_Name) ON

/*In the insert query specify the column's list insert into table*/
INSERT INTO (Table_Name) (Identity_Column,col2,col3,...) VALUES (Identity_Value,val2,val3,...)

/* Now set the identity_insert set off*/
SET IDENTITY_INSERT (Table_Name) OFF
Rajput

Respostas semelhantes a “coluna de identidade no servidor SQL”

Perguntas semelhantes a “coluna de identidade no servidor SQL”

Mais respostas relacionadas para “coluna de identidade no servidor SQL” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código