Microsoft SQL Server
SCOPE_IDENTITY ()
Ricerca…
Sintassi
- SELEZIONA SCOPE_IDENTITY ();
- SELEZIONA SCOPE_IDENTITY () AS [SCOPE_IDENTITY];
- SCOPE_IDENTITY ()
Introduzione con un semplice esempio
SCOPE_IDENTITY () restituisce l'ultimo valore di identità inserito in una colonna Identity nello stesso ambito. Un ambito è un modulo: una stored procedure, trigger, funzione o batch. Pertanto, due istruzioni sono nello stesso ambito se si trovano nella stessa stored procedure, funzione o batch.
INSERT INTO ([column1], [column2]) VALUES (8,9);
PARTIRE
SELEZIONA SCOPE_IDENTITY () AS [SCOPE_IDENTITY];
PARTIRE
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow