sp_executesql 使用
Posted 桃花雪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sp_executesql 使用相关的知识,希望对你有一定的参考价值。
declare @tableName nvarchar(50),@SQLString nvarchar(max),@userid varchar(50),@ParmDefinition nvarchar(max);
set @tableName=‘commodity‘;
set @userid=‘15639919851‘;
--set @sql=N‘select @count=count(empid) from table27‘
set @SQLString=N‘select id from ‘[email protected]+‘ where [email protected]‘;
set @ParmDefinition=N‘@userid nvarchar(50)‘;
exec sp_executesql @SQLString,@ParmDefinition,@[email protected] ;
--declare @count int,@tableName nvarchar(50),@SQLString nvarchar(max),@proid int,@id int,@ParmDefinition nvarchar(max);
--set @tableName=‘commodity‘;
--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 使用的主要内容,如果未能解决你的问题,请参考以下文章