String sql = "select top 每页数据 from 表名 where id not in(select top((当前页-1)*每页数据) id from 表名)"
如:select top 5 * from radio where rid not in(select top ((2-1)*5) rid from radio)
如:select top 5 * from radio where rid not in(select top ((2-1)*5) rid from radio)