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
发布时间: 2012-02-25 10:01:49 作者: rapoo
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