当前位置: 代码迷 >> ASP.NET >> SQL中怎么取TOP 100 -500之间的数据呢
  详细解决方案

SQL中怎么取TOP 100 -500之间的数据呢

热度:685   发布时间:2013-02-26 00:00:00.0
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
  相关解决方案