I\'m inserting multiple records into a table A from another table B. Is there a way to get the identity value of table A record and update table b record with out doing a cu
If you always want this behavior, you could put an AFTER INSERT trigger on TableA that will update table B.