首页  >  文章  >  数据库  >  SqlServer中使用参数传递前N条条件

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

WBOY
WBOY原创
2016-06-07 14:54:411428浏览

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.   
  4. select top (@topN) * from TableName  

    一定要用() 否则无效

SQL 参数
declare @topN int;   
select @topN = 10;   
  
select top (@topN) * from TableName  
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn