Nie możesz przechwycić wygenerowanej tożsamości w CTE. Możesz jednak wstawić wszystkie wiersze do tabeli docelowej za pomocą null
jako ParentID
a następnie zaktualizuj ParentID
w osobnym oświadczeniu aktualizacyjnym. Aby to zrobić, możesz użyć merge
oraz technikę opisaną tutaj
.
-- Helper table to map new id's from source
-- against newly created id's in target
declare @IDs table
(
TargetID int,
SourceID int,
SourceParentID int
)
-- Use merge to capture generated id's
merge BillOfMaterials as T
using SourceTable as S
on 1 = 0
when not matched then
insert (SomeColumn) values(SomeColumn)
output inserted.BomId, S.BomID, S.ParentID into @IDs;
-- Update the parent id with the new id
update T
set ParentID = I2.TargetID
from BillOfMaterials as T
inner join @IDs as I1
on T.BomID = I1.TargetID
inner join @IDs as I2
on I1.SourceParentID = I2.SourceID
Oto pełna próbka działająca na SE-Data