22,300
社区成员




--sql server 2005 对 top n 的改进写法
declare @n int
set @n=10
select top (@n) * from sys.objects
/*
在TOP后面使用变量
(爱新觉罗.毓华 2008-01-02 广东深圳)
*/
--SQL SERVER 2005 的写法
use adventureworks
go
DECLARE @Percentage int
SET @Percentage = 1
SELECT TOP (@Percentage) PERCENT
Name
FROM Production.Product
ORDER BY Name
/*
Name
----------------------
Adjustable Race
All-Purpose Bike Stand
AWC Logo Cap
BB Ball Bearing
Bearing Ball
Bike Wash - Dissolver
(6 行受影响)
*/
-----------------------------------
--SQL SERVER 2000 的写法
create table a([id] [int])
insert into a(id) values(1)
insert into a(id) values(2)
insert into a(id) values(3)
insert into a(id) values(4)
insert into a(id) values(5)
declare @num as int
declare @sql as varchar(2000)
set @num = 2
set @sql = 'select top ' + cast(@num as char) + ' * from a'
exec(@sql)
drop table a
/*
id
-----------
1
2
*/
declare @n int
set @n=50
exec('select top '+convert(varchar(10),@n)+' * from tab')