SqlServer中用exec处理sql字符串中含有变量的小例子

sqlserver中,用exec处理sql字符串中含有变量,提示:必须声明标量变量@(已解决!)

复制代码 代码如下:

declare @tssj nvarchar(100)  — 外部变量

declare @sql_sql nvarchar(100) — 存sql字符串变量

      set @sql_sql =n’select @tssj=jpk from b where bzmc=”中国”’

exec sp_executesql @sql_sql,n’@tssj int output’,@tssj output

select @tssj  

n’@tssj int output’,@tssj output
这句是关键,是传入变量参数和传出变量参数!

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐