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

SQL中如何取TOP 100 -500之间的数据呢?
SQL中如何取TOP   100   -500之间的数据呢?

------解决方案--------------------
select top 400 * from (select top 500 * from table order by id asc) table_别名 order by id desc