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)
- 不工作?