Showing posts with label SQL Server. Show all posts
Showing posts with label SQL Server. Show all posts

IDENTITY (Function)

IDENTITY (Function) Is used only in a SELECT statement with an INTO table clause to insert an identity column into a new table. Although sim...
Read More

IDENT_SEED Function

IDENT_SEED  This function returns the original seed value (returned as numeric(@@MAXPRECISION,0)) that was specified when an identity colum...
Read More

IDENT_INCR Funtion

IDENT_INCR Funtion This function returns the increment value (returned as numeric (@@MAXPRECISION,0)) specified during the creation of an i...
Read More

IDENT_CURRENT function

IDENT_CURRENT  This function returns the last identity value generated for a specified table or view. The last identity value generated can ...
Read More