gpt4 book ai didi

sql-server - 将临时表中的多个值插入到表中

转载 作者:行者123 更新时间:2023-12-01 06:21:46 25 4
gpt4 key购买 nike

我在一个名为 #tempIQ 的临时表中有几个值,我想使用相同的组标识符插入一个名为 IQGroups 的表中。假设每个人都有独特的智商:

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)

最佳答案

试试这个:

 INSERT INTO IQGroups (GroupID, IQ)
SELECT @GroupID, IQ
FROM #tempIQ

关于sql-server - 将临时表中的多个值插入到表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11127046/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com