开发者

ROW_NUMBER Alternative for SQL Server 2000

开发者 https://www.devze.com 2023-01-03 16:38 出处:网络
RIGHT now I\'m using ROW_NUMBER() in my procedure in SQL Server 2008 as follows: WITH cars as(SELECT carid,mileage,retailprice,imageurl,model,year,

RIGHT now I'm using ROW_NUMBER() in my procedure in SQL Server 2008 as follows:

WITH cars as(SELECT carid,mileage,retailprice,imageurl,model,year, 
             Zips.Distance AS Miles, Manufacturers.mfgName as Make,
             dealers.companyname as companyname, CASE @sortby 
WHEN 'D' THEN ROW_NUMBER() OVER (ORDER BY  Manufacturers.mfgName) 
WHEN 'P' THEN ROW_NUMBER() OVER (ORDER BY retailprice) 
WHEN 'M' THEN ROW_NUMBER() OVER (ORDER BY mileage) 
END as 'rownum'
FROM usedcars INNER JOIN #TempZips Zips ON Zips.ZipCode =usedcars.loczip
left join Manufacturers on Manufacturers.mfgid=usedcars.mfgid 
left join dealers on dealers.dealerid = usedcars.dealerid 
where usedcars.active=1 and usedcars.dealerid=@dealer开发者_如何学运维id)
select @totalrecords as totalrec,*  from cars 
where rownum between @skip and  @take

Is there an equivalent to this that works in SQL2000? (ROW_NUMBER wasn't introduced until SQL2005).


You can create a temp table with an identity column, and insert your data into that.

Then use the temp table.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号