本文介绍了如何将整个查询作为参数发送到Store Procedure的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经在datagridview中保存了一些查询现在我想将该查询发送到我的Storeprocedure以执行它我该怎么做?
这里我正在向我的SP发送完整查询但是向我显示错误
消息102,级别15,状态1,过程SPSearchQueryDML,第30行
'@SavedSelectQuery'附近的语法不正确。
i have saved some queries in datagridview now i want to send that query to my Storeprocedure for the execution of it how can i do this?
here it is i am sending full query to my SP but showing me the error
Msg 102, Level 15, State 1, Procedure SPSearchQueryDML, Line 30
Incorrect syntax near '@SavedSelectQuery'.
if @Mode ='SavedSelectSQ'
begin
@SavedSelectQuery
end
推荐答案
exec(@SavedSelectQuery)
这篇关于如何将整个查询作为参数发送到Store Procedure的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!