HomeSQL ServerSQL Server 101 – Get the identity of inserted row

SQL Server 101 – Get the identity of inserted row

If you are looking at a way to find the identity of the inserted row in SQL Server , you can use the SCOPE_IDENTITY().

How to get the identity of the inserted row in SQL Server ?

SCOPE_IDENTITY, IDENT_CURRENT, and @@IDENTITY are similar functions because they return values that are inserted into identity columns.

The difference is that SCOPE_IDENTITY() returns the last identity value generated for any table in the current scope.

SELECT SCOPE_IDENTITY()

Leave a Reply

You May Also Like

When dealing with a relational database management system (RDBMS) like SQL Server, compatibility level is an important concept to understand....
In this blog post, let’s learn about the error message “49975 – Unable to load controller client certificate due to...
In this blog post, let’s learn about the error message “49973 – Cannot remove tempdb remote file to local tempdb...