就是想查前 10 行的数据,或者是第 11 行——第20 行的数据...
------解决方案--------------------
前10行的:select top 10 * from tablename
前11——20行的:select top 10 * from tablename where id not in
(select top 10 * from tablename)
思路就是这样
------解决方案--------------------
rs.absolute(11);可以定位在第11行上。明白了吧