gpt4 book ai didi

sql - 如何为 SQL 表中的每一项运行 Insert 语句?

转载 作者:行者123 更新时间:2023-12-01 00:28:23 24 4
gpt4 key购买 nike

我有一个表变量如下:

declare @countries table (countryId int)

其中有 5 条记录。

我需要为列表中的每个 countryId 编写一个单独的插入语句,例如:

insert into Countries (ID) VALUES (countryId)

如果不使用光标怎么可能呢?

有没有更简单的方法?

最佳答案

您可以使用 insert ... select 而不是 insert ... values:

insert  Countries 
(ID)
select countryId
from @countries

关于sql - 如何为 SQL 表中的每一项运行 Insert 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12040803/

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