使用很简单的一个技巧实现:
select top m * from table where id not in (
select top n id from table )
使用很简单的一个技巧实现:
select top m * from table where id not in (
select top n id from table )
转载于:https://www.cnblogs.com/GarfieldTom/archive/2009/05/07/1451452.html