日期:2014-05-19  浏览次数:20703 次

这行Sql语句怎么取(Sql Server)
select   top   5   *   from   表  

这行意思是:取出表中前五条记录.  

但是我要取出表中的后五条记录呢?  

注意:我不要order   by   id   desc


------解决方案--------------------
不要order by id desc

那用临时表..
------解决方案--------------------
up