Click here to Subscribe to ITPORT Channel : [ Ссылка ]
@@Identity, Scope_Identity, Ident_Current these are all system function that returns the last-inserted identity value.
After an INSERT, SELECT INTO, or bulk copy statement is completed, @@IDENTITY contains the last identity value that is generated by the statement. If the statement did not affect any tables with identity columns, @@IDENTITY returns NULL. If multiple rows are inserted, generating multiple identity values, @@IDENTITY returns the last identity value generated. If the statement fires one or more triggers that perform inserts that generate identity values, calling @@IDENTITY immediately after the statement returns the last identity value generated by the triggers. If a trigger is fired after an insert action on a table that has an identity column, and the trigger inserts into another table that does not have an identity column, @@IDENTITY returns the identity value of the first insert. The @@IDENTITY value does not revert to a previous setting if the INSERT or SELECT INTO statement or bulk copy fails, or if the transaction is rolled back.
Failed statements and transactions can change the current identity for a table and create gaps in the identity column values. The identity value is never rolled back even though the transaction that tried to insert the value into the table is not committed. For example, if an INSERT statement fails because of an IGNORE_DUP_KEY violation, the current identity value for the table is still incremented.
@@IDENTITY, SCOPE_IDENTITY, and IDENT_CURRENT are similar functions because they all return the last value inserted into the IDENTITY column of a table.
@@IDENTITY and SCOPE_IDENTITY return the last identity value generated in any table in the current session. However, SCOPE_IDENTITY returns the value only within the current scope; @@IDENTITY is not limited to a specific scope.
IDENT_CURRENT is not limited by scope and session; it is limited to a specified table. IDENT_CURRENT returns the identity value generated for a specific table in any session and any scope
SQL Server Identity
Теги
SQL Server @@Identity vs Scope_Identity vs Ident_CurrentIdentity Example in SQL Server@@Identity Example SQL ServerScope_Identity Example SQL ServerIdent_Current Example SQL Server@@Identity Example in SQL ServerSccope_identity Example in SQL ServerIdent_Current Example in SQL ServerSQL Server Scope_Identity ExampleSQL Server Ident_Current ExampleSQL ServerSQL Server ExampleSQL Server ExamplesSQL Server Simple ExampleSQL Server Simple Examples