这是我的脚本的一部分:
DECLARE @dataId int = 123
-- Here I run more SQL scripts using @dataId
Select from table A where id = @dataId
-- So on it goes in other tables and delete and update other tables
我的问题是有一种方法可以输入 100 个值@dataId
,它会按顺序遍历脚本吗?在 SQL Server 2008 中是否有更简单的方法来执行此操作,而不是@dataId
每次手动输入?