Is it possible in sql server using stored procedure to return the identity column value in a table against which some values are inserted? For example using stored procedure
Insert into TBL (Name, UserName, Password) Output Inserted.IdentityColumnName Values ('example', 'example', 'example')