SQL Server 中动态 SQL 中 Oracle 绑定变量的等价物是什么?
在 Oracle 中,编写动态 SQL 时会执行以下操作:
create or replace procedure myProc(n in number)
as
begin
execute immediate
'update myTable set myColumn = :n'
using n;
commit;
end;
然后“奇迹发生”。 SQL Server 中的等效概念/语法(如果有)是什么? (顺便说一句,我使用的是 SQL Server 2005)
In Oracle, when writing dynamic SQL one does something like this:
create or replace procedure myProc(n in number)
as
begin
execute immediate
'update myTable set myColumn = :n'
using n;
commit;
end;
And then 'magic happens'. What, if any, is the equivalent concept / syntax in SQL Server? (BTW I'm using SQL Server 2005)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您将使用
sp_executesql
。绑定变量如下所示:@var1
。下面的链接是针对标准 Northwind 数据库的示例查询:
完整的详细信息和示例语法位于以下链接:
http://msdn.microsoft.com/en-us/library/ms188001.aspx
http://msdn.microsoft.com/en-us/library/ms175170.aspx
You would use
sp_executesql
. The bound variables look like this:@var1
.From the below link, an example query against the standard Northwind database:
Full details and example syntax are at the following links:
http://msdn.microsoft.com/en-us/library/ms188001.aspx
http://msdn.microsoft.com/en-us/library/ms175170.aspx
sp_executeSQL
可能是最接近的,有还有exec()
,还有必读:动态 SQL 的诅咒与祝福。sp_executeSQL
is probably the closest, there is alsoexec()
, also mustread: The Curse and Blessings of Dynamic SQL.