参见英文答案 >
How to insert multiple records and get the identity value?8个
我使用选择插入表格
我使用选择插入表格
INSERT california_authors (au_id,au_lname,au_fname) SELECT au_id,au_fname FROM authors WHERE State = 'CA'@H_403_5@说我在california_authors中有一个身份列.我可以得到上述特定插入插入的所有ID,就像我可以得到@@ IDENTITY进行最后一次插入吗? @H_403_5@我不能对california_authors使用select命令,因为可能存在先前插入的过滤状态= CA
解决方法
您可以使用
output子句.
@H_403_5@如果您的身份列命名为“IdentityCol”,将返回您的id作为结果集.
这是一个将id存储在表变量中的示例.
INSERT california_authors (au_id,au_fname) OUTPUT inserted.IdentityCol SELECT au_id,au_fname FROM authors WHERE State = 'CA'@H_403_5@您可以使用输出…将id插入到表中.
这是一个将id存储在表变量中的示例.
declare @IDs table (id int) INSERT california_authors (au_id,au_fname) OUTPUT inserted.IdentityCol INTO @IDs SELECT au_id,au_fname FROM authors WHERE State = 'CA'