Others
This page lists the functions in SQL Server that are not classified under other categories.
-
@@IDENTITY
In SQL Server,@@IDENTITY
is a system variable used to return the identity column value of the most recently inserted row. -
@@ROWCOUNT
In SQL Server,@@ROWCOUNT
is a system variable used to return the number of rows affected by the last executed Transact-SQL statement. -
IDENT_CURRENT
IDENT_CURRENT()
is a function in SQL Server used to retrieve the last inserted identifier for a specific table. -
NEWID
TheNEWID()
function is one of the functions in SQL Server used to generate globally unique identifiers (GUIDs). -
NEWSEQUENTIALID
In SQL Server, theNEWSEQUENTIALID()
function is used to generate a new, non-repeating GUID (globally unique identifier). -
SCOPE_IDENTITY
In SQL Server, theSCOPE_IDENTITY()
function is used to return the value of the most recently inserted identity column within the current scope.