怎样列出第10条以后的记录?解决思路

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

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

--假设ID为唯一字段

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