动态的调用输出查询语句中的值 execute sp_executesql
1. 单个的查询:
declare @exec_sqlCount nvarchar(1000)
declare @count int
set @exec_sqlCount= ‘select @count=sum(t.a) from t ‘
declare @scon nvarchar(100)=‘@count int output‘ --定义一个输出参数
execute sp_executesql @exec_sqlCount,@scon,@count=@count output --执行
--很多时候查询的时候不能将查到的值带出,所已可用该方法。。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。