DECLARE @t TABLE
(
ID uniqueidentifier,
ID2 uniqueidentifier
)
...@t に挿入 ...@t に処理を実行
INSERT INTO testTable (Id, Id2) VALUES (SELECT ID, ID2 from @t)
-動作しません?
DECLARE @t TABLE
(
ID uniqueidentifier,
ID2 uniqueidentifier
)
...@t に挿入 ...@t に処理を実行
INSERT INTO testTable (Id, Id2) VALUES (SELECT ID, ID2 from @t)
-動作しません?