作者:风云a899 | 来源:互联网 | 2018-05-27 16:03
declare@topNint;select@topN10;selecttop(@topN)*fromTableName一定要用()否则无效SQL参数declare@topNint;select@topN10;selecttop(@topN)*fromTableName
declare @topN int ; select @topN=10; select top (@topN) * from TableName 一定要用() 否则无效 SQL 参数 declare @topN int; select @topN = 10; select top (@topN) * from TableName
- declare @topN int;
- select @topN = 10;
-
- select top (@topN) * from TableName
一定要用() 否则无效
SQL 参数
declare @topN int;
select @topN = 10;
select top (@topN) * from TableName