sp_executesql的用法
Posted 任木
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sp_executesql的用法相关的知识,希望对你有一定的参考价值。
需求:表名是动态的,必须用exec来执行,然后在exec里边还得给变量动态赋值 这时候exec 就搞不定了
exec(‘select @count=count(empid) from ‘[email protected]+‘ where proid=‘[email protected]+‘ and id<‘[email protected]+‘ and state!=4‘)
下边这个代码如果去掉where后边的东东就是可以的
一:正确
set @sql=N‘select @count=count(empid) from ‘[email protected]
exec sp_executesql @sql,N‘@count int output ‘,@count output
select @count
二:错误
set @sql=N‘select @count=count(empid) from ‘[email protected]+‘ where proid=‘[email protected]+‘ and id<‘[email protected]+‘ and state!=4‘
exec sp_executesql @sql,N‘@count int output ‘,@count output
select @count
三:正确(我的例子包含表名,表名不可以直接和proid1一样 表名必须要用 ‘+表名+’ ,不加的我试过了报错)
declare @count int,@tableName nvarchar(50),@SQLString nvarchar(max),@proid int,@id int,@ParmDefinition nvarchar(max);
set @tableName=‘table27‘;
set @proid=433;
set @id=159;
--set @sql=N‘select @count=count(empid) from table27‘
set @SQLString=N‘select @countOUT=count(empid) from ‘[email protected]+‘ where [email protected] and id<@id1 and state!=4‘;
set @ParmDefinition=N‘@proid1 int,@id1 int,@countOUT int output‘;
exec sp_executesql @SQLString,@ParmDefinition,@[email protected],@[email protected],@[email protected] output;
select @count;
官方的例子:
以上是关于sp_executesql的用法的主要内容,如果未能解决你的问题,请参考以下文章
SqlserverT-SQL中EXEC 与 SP_EXECUTESQL的 区别
当使用 sp_executesql 作为过滤器时,保护 t-sql 动态代码的最佳方法是啥