这行Sql语句怎么取(Sql Server)selecttop5*from表这行意思是:取出表中前五条记录.但是我要取出表中的后五
这行Sql语句怎么取(Sql Server)
select top 5 * from 表
这行意思是:取出表中前五条记录.
但是我要取出表中的后五条记录呢?
注意:我不要order by id desc
[解决办法]
不要order by id desc
那用临时表..
[解决办法]
up
