当前位置: 代码迷 >> Sql Server >> 根据提供的参数执行存储过程,该如何处理
  详细解决方案

根据提供的参数执行存储过程,该如何处理

热度:99   发布时间:2016-04-27 13:02:27.0
根据提供的参数执行存储过程
CREATE PROC PR_CGDDSH
@rq1 datetime,@rq2 datetime


declare @sql varchar(50)
select @sql= sql from A


[email protected]=selec * from B where rq>@rq1 and rq<@rq2



[email protected]@rq2
如何执行 exec @sql 这个语句,代码怎么写





------解决方案--------------------
SQL code
set @sql='select * from B where rq>[email protected]+' and rq<[email protected]exec(@sql)
------解决方案--------------------
用sp_executesql,具体参考sql帮助
------解决方案--------------------
lz:参考这两个

sp_executesql

exec(@sql)

希望lz成功。
------解决方案--------------------
EXEC (@Sql) 这样执行sql语句时,@Sql中是不能包括变量的,[email protected]@Value,@Start,@End,@[email protected]
------解决方案--------------------
exec执行的动态语句是在另外的批处理执行的,因此exec外部声明的变量是没有用的,exec里是找不到这些变量的,
可以使用sp_executesql来完成。
SQL code
ALTER procedure [dbo].[SP_SQL](@form_name varchar(50),@F_tag varchar(50),@Start datetime,@End datetime,@Value varchar(50),@check int)asbegindeclare @sql varchar(500)select @sql=F_sql from T_sql where [email protected]_name and [email protected]_tagEXECUTE sp_executesql         @sql, [email protected] datetime, @ed datetime, @v varchar(50), @ck int',         @st = @Start,        @ed = @End,        @v = @Value,        @ck [email protected];
------解决方案--------------------
探讨
引用:
用sp_executesql,具体参考sql帮助



sp_executesql可以的,我跟踪了代码显示

exec sp_executesql N'select a.*,(case a.F_Type when ''销售退货入库'' then c.F_Name when ''委外退料入库'' then d.F_Name when ''委外完工入库'' the……
  相关解决方案