declare @RelevantMachines Table (MachineId int)
Select MachineId, ClusterId, MachineGuid, MachineName, RegisteredDate, MachineDetail, LastServiceCall, MachineType as MachineTypeId, ProductSetId
From PatchHub.Machine
Where ClusterId = @ClusterId
我希望能够将 select 语句作为结果集返回,同时使用所有返回的行 MachineId 值填充表变量,这是在 sql server 2008 中。如何在不运行 select 语句的情况下实现这一点两次?