一般情况下:
select * into # from table1
set rowcount 1
delete from #
set rowcount 4
select top 4 * from table1
set rowcount 0
drop table #
如果有主健或者其他可以唯一标识一行的字段,比如:identity列
select top 4 * from table1
where 主键 not in (select top 1 主键 from table1 order by 主键)
order by 主键