SqlServer中使用参数传递前N条条件
程序员文章站
2022-06-13 22:28:19
...
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
一定要用() 否则无效
declare @topN int; select @topN = 10; select top (@topN) * from TableName