select * from table1 where id not in (select top 10 Id from table1 order by inidate)
如何提取除最新十条记录之外的所有记录?
80酷酷网 80kuku.com
select * from table1 where id not in (select top 10 Id from table1 order by inidate)