日期:2014-05-19  浏览次数:20373 次

怎样列出第10条以后的记录?
要SQL语句

------解决方案--------------------

--假设ID为唯一字段

select *
from 表名
where id not in (select top 10 id from 表名)