In my database all tables are using a common table for Sequence(ID_Table).
TABLE_ID has two fields (Common_ID, Table_Name).
If I insert any record in the tab
You could be also more table-specific using IDENT_CURRENT()
Insert INTO TABLE_ID (Table_NAME), Values (Table_Products) select @NewID=IDENT_CURRENT('TABLE_ID') Insert INTO Table_Products (ID, Product_Name, Product_ID Values (@NewID, SomeProduct, Increment)