我可以在ASE中使用动态sql来声明游标吗
我想使用动态 sql 来选择游标的数据库名称。使用 sybase ASE 可以实现此功能或类似功能吗?
create procedure myproc
@dbname = varchar(20) = null as
declare mycur cursor for select @dbname..mytable
... use cursor
go
I want to use dynamic sql to select the database name for a cursor. Is this or something similar possible using sybase ASE?
create procedure myproc
@dbname = varchar(20) = null as
declare mycur cursor for select @dbname..mytable
... use cursor
go
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以动态创建临时表
像
——然后
等等
You can create dynamically a temp table
something like
-- and then
etc
要使用动态sql,首先使用创建临时表使用
以下方法构造动态sql
现在插入到您创建的临时表中(确保它与sql输出具有相同的数据类型)
执行sql语句(将数据插入到临时表中 )表)
现在使用游标中的临时表
……
To use dynamic sql, first create a temp table using
Construct the dynamic sql using the following method
Now insert into the temp table you created (make sure it is of the same datatypes as the sql output)
Execute sql statement (to insert data into temp table)
Now use the temp table in the cursor
……