Sybase,将字符串作为sql查询执行

发布于 2024-09-24 15:13:37 字数 580 浏览 10 评论 0原文

在 Sybase SQL 中,我想执行包含 SQL 的字符串。

我希望这样的事情能够

declare @exec_str char(100)
select @exec_str = "select 1"
execute @exec_str
go

exec 命令的文档

执行|执行

<块引用>
用于执行存储过程或扩展存储过程

程序(ESP)。这个关键字是 如果有多个则需要 批处理中的语句。

execute 还用于执行包含 Transact-SQL 的字符串。

然而我上面的例子给出了一个错误。我做错了什么吗?

In Sybase SQL, I would like to execute a String containing SQL.

I would expect something like this to work

declare @exec_str char(100)
select @exec_str = "select 1"
execute @exec_str
go

from the documentation of the exec command

execute | exec

is used to execute a stored procedure or an extended stored

procedure (ESP). This keyword is
necessary if there are multiple
statements in the batch.

execute is also used to execute a string containing Transact-SQL.

However my above example gives an error. Am I doing something wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紧拥背影 2024-10-01 15:13:37

您需要包围:

execute ( @exec_str )

You need bracketing:

execute ( @exec_str )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文