当前位置:Gxlcms > mysql > SqlServer中使用参数传递前N条条件

SqlServer中使用参数传递前N条条件

时间:2021-07-01 10:21:17 帮助过:2人阅读

declare @topN int ; select @topN=10; select top (@topN) * from TableName 一定要用() 否则无效 SQL 参数 declare @topN int; select @topN = 10; select top (@topN) * from TableName

  1. declare @topN int;
  2. select @topN = 10;
  3. select top (@topN) * from TableName

    一定要用() 否则无效

SQL 参数
declare @topN int;   
select @topN = 10;   
  
select top (@topN) * from TableName  

人气教程排行