sql-server – 可以使用select返回多个标识来插入SQL吗?

前端之家收集整理的这篇文章主要介绍了sql-server – 可以使用select返回多个标识来插入SQL吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > 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'

说我在california_authors中有一个身份列.我可以得到上述特定插入插入的所有ID,就像我可以得到@@ IDENTITY进行最后一次插入吗?

我不能对california_authors使用select命令,因为可能存在先前插入的过滤状态= CA

解决方法

您可以使用 output子句.

如果您的身份列命名为“IdentityCol”,将返回您的id作为结果集.

INSERT california_authors (au_id,au_fname)
OUTPUT inserted.IdentityCol
SELECT au_id,au_fname
FROM authors
WHERE State = 'CA'

您可以使用输出…将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'
原文链接:https://www.f2er.com/mssql/81569.html

猜你在找的MsSQL相关文章