Returns the increment value (returned as numeric(@@MAXPRECISION,0)) specified during the creation of an identity column in a table or view that has an identity column.
IDENT_INCR('table_or_view')
numeric
This example returns 1 for the jobs table in the pubs database because the jobs table includes an identity column with an increment value of 1.
USE pubs
SELECT TABLE_NAME, IDENT_INCR(TABLE_NAME) AS IDENT_INCR
FROM INFORMATION_SCHEMA.TABLES
WHERE IDENT_INCR(TABLE_NAME) IS NOT NULL
Here is the result set:
TABLE_NAME IDENT_INCR
------------------------------------------------------------ -----------
jobs 1
(1 row(s) affected)
Expressions | System Functions |