这行Sql语句怎么取(Sql Server)
select top 5 * from 表
这行意思是:取出表中前五条记录.
但是我要取出表中的后五条记录呢?
注意:我不要order by id desc
[解决办法]
不要order by id desc
那用临时表..
[解决办法]
up
发布时间: 2011-12-25 23:21:20 作者: rapoo
这行Sql语句怎么取(Sql Server)
select top 5 * from 表
这行意思是:取出表中前五条记录.
但是我要取出表中的后五条记录呢?
注意:我不要order by id desc
[解决办法]
不要order by id desc
那用临时表..
[解决办法]
up