select top m * from table where id not in (
select top n id from table )
select top m-n * from (select top m * from table order by id desc) aa
select top m * from table where id not in (
select top n id from table )
select top m-n * from (select top m * from table order by id desc) aa
相关文章: