SQLServer Top语句参数化方法

前端之家收集整理的这篇文章主要介绍了SQLServer Top语句参数化方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

declare @TopCount int
set @TopCount = 100
select top (@TopCount) * from AdventureWorks.HumanResources.Employee 如果有Like等字句,一定要拼sql的话,也应该使用sp_executesql来执行,示例如下: declare @TopCount int --定义top 数量
set @TopCount = 100
declare @Title nvarchar(100) --定义like内容
set @Title = '%n%'
declare @Selectsql nvarchar(max)
set @Selectsql = '
select top (@TopCountPar) *
from AdventureWorks.HumanResources.Employee
where Title like @TitlePar' --使用参数化的top和like --使用sp_executesql 来执行,可以提高效率
exec sp_executesql @Selectsql,
N'@TopCountPar as int,@TitlePar as nvarchar(100)',
@TopCountPar = @TopCount,@TitlePar = @Title

原文链接:https://www.f2er.com/mssql/64361.html

猜你在找的MsSQL相关文章