I have the following query:
DECLARE @OutProduct TABLE
(
ProductID INT,
BulkProductId INT
)
INSERT INTO dbo.Products
( EanCode ,
ChangedDateTime ,
ChangedById ,
Deleted
)
OUTPUT INSERTED.ID, BulkProducts.Id INTO @OutProduct (ProductID, BulkProductId)
SELECT EanCode ,
GETDATE(),
GETDATE(),
0
FROM dbo.BulkProducts
WHERE ProductId is NULL
Assuming Products.Id
& BulkProducts.Id
are auto-incrementing identity columns:
What I'm trying to achieve:
@OutProduct
temp table contains tuples made up of the just-inserted Products.Id
and the Id of the row in BulkProducts
.
What I've stumbled upon: BulkProducts.Id
cannot be used in the OUTPUT INSERTED.ID, BulkProducts.Id INTO
statement, as it's not valid syntax.
How can I solve this?
EDIT: I'm using SQL Server 2012.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…