#tempIQという一時テーブルにいくつかの値があり、同じグループ識別子を使用してIQGroupsというテーブルに挿入したいと思います。誰もが独自のIQを持っていると仮定します。
create table #tempIQ
(
id int
)
declare @GroupIDas int
set @GroupID=1001
select iq from #tempIQ
1,2,86,99,101,165,180,201
これらのIDを一時テーブルからIQGroupsというグループに挿入したいのですが、簡単な解決策を見つけるのに苦労しています。
-- now try and insert all the iqs for a group into the IQGroups table from the #tempIQ table.
insert into IQGroups (GroupID, IQ) values (@GroupID, #tempiQ.iq)