select test2.* from ( select top 3 * from Test) test2
where test2.id not in ( select top 1 Test.id from Test) ;
查询表Test的第2到第3行
select test2.* from ( select top 3 * from Test) test2
where test2.id not in ( select top 1 Test.id from Test) ;
查询表Test的第2到第3行