SQLServer 执行字符串语句
1.使用execute来执行字符串
--使用Northwind数据库 declare @sql nvarchar(200) set @sql='select * from customers' exec(@sql)
注意:
exec sql和exec(sql)是有区别的.
exec sql是执行存储过程.
exec(sql)是执行sql字符串语句.
2.使用exec sp_executesql来执行字符串
--使用Northwind数据库 declare @sql nvarchar(200) set @sql='select * from customers' exec sp_executesql @sql
传递参数:
--使用SQLServer数据库 --声明SQL字符串变量 declare @sql nvarchar(max) = ''; --1、执行SQL字符串 形参和实参一一对应 declare @contacttitle nvarchar(30) = 'owner'; set @sql='select * from customers where contacttitle=@contacttitle and CompanyName=@CompanyName'; exec sp_executesql @sql,N'@contacttitle nvarchar(30),@CompanyName nvarchar(40)',@contacttitle=@contacttitle,@CompanyName='Bon app'; --2、执行SQL字符串 形参和实参以先后顺序对齐 declare @id nvarchar(50) = '',@name nvarchar(50) = ''; set @sql = 'SELECT TOP 1 @id = id FROM peoples WHERE name = @name'; exec sp_executesql @sql,N'@id nvarchar(50) OUTPUT,@name nvarchar(50)',@id OUTPUT,@name IN print '得到 id :' + @id;
现在来看exec sp_executesql的语法:
sp_executesql [@stmt =] stmt [ {, [@params =] N'@parameter_name data_type [,...n]' } {, [@param1 =] 'value1' [,...n] } ]
我们注意到该存储过程的第一个参数是用来设置参数类型的,后面相应的才跟着参数的值.
替换 sp_executesql 中的参数的能力,与使用 EXECUTE 语句执行字符串相比,有下列优点:
1.因为在 sp_executesql 中,Transact-SQL 语句的实际文本在两次执行之间未改变,所以查询优化器应该能将第二次执行中的 Transact-SQL 语句与第一次执行时生成的执行计划匹配。这样,SQL Server 不必编译第二条语句。
2.Transact-SQL 字符串只生成一次。
3.整型参数按其本身格式指定。不需要转换为 Unicode。
转载自:https://www.cnblogs.com/oneword/archive/2010/03/12/1683937.html