首頁  >  文章  >  資料庫  >  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