How to insert multiple records and get the identity value?

前端 未结 7 750
暗喜
暗喜 2020-11-27 03:54

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

7条回答
  •  执念已碎
    2020-11-27 04:17

    If you always want this behavior, you could put an AFTER INSERT trigger on TableA that will update table B.

提交回复
热议问题