想按照指定位置取出数据不知如何做.
(取表中第10条以后的10条数据,每次都不是固定的位置)
------解决方案--------------------------------------------------------
select top 10 from 表 where id not in (select top 10 id from 表 order by id) order by id
------解决方案--------------------------------------------------------