how to get table current identity value in sql server

Solutions on MaxInterview for how to get table current identity value in sql server by the best coders in the world

showing results for - "how to get table current identity value in sql server"
Dorian
07 May 2020
1SELECT IDENT_CURRENT('Pets') AS Result;
2