gpt4 book ai didi

SQL Server-声明局部变量 : "there is already an object named ' ' in the database"

转载 作者:行者123 更新时间:2023-12-02 05:45:44 24 4
gpt4 key购买 nike

我编写了以下存储过程,其中我使用了局部变量“syncParam”:

declare @syncParam bit

select isSync into syncParam from MyTable where id=@id
if (@syncParam='True')...
else ...

return @syncParam

当我第一次执行这个存储过程时它起作用了,但之后我得到以下错误:“数据库中已经有一个名为'syncParam'的对象”。

我错过了什么?

提前致谢。

最佳答案

你想要

select @syncParam  = isSync from MyTable where id=@id

SELECT INTO 会将记录插入到新表中。去看看,你现在应该有一个 syncParam 表。

关于SQL Server-声明局部变量 : "there is already an object named ' ' in the database",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3849732/

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