在 OPENROWSET 查询中使用变量
我遇到了这个查询的问题:
I'm having trouble with this query:
SELECT *
FROM OPENROWSET(
'SQLNCLI',
'DRIVER={SQL Server};',
'EXEC dbo.sProc1 @ID = ' + @id
)
给出错误:
'+' 附近的语法不正确.
Incorrect syntax near '+'.
有人知道我为什么会收到这个错误吗?
Anyone know why I'm getting this error?
推荐答案
按照 Scott 的建议,OPENROWSET
中不能使用表达式.尝试创建动态 sql 来传递参数
As suggested by Scott , you cannot use expressions in OPENROWSET
.Try creating a dynamic sql to pass the parameters
Declare @ID int
Declare @sql nvarchar(max)
Set @ID=1
Set @sql='SELECT *
FROM OPENROWSET(
''SQLNCLI'',
''DRIVER={SQL Server};'',
''EXEC dbo.usp_SO @ID =' + convert(varchar(10),@ID) + ''')'
-- Print @sql
Exec(@sql)
相关文章