以下是引用lmhwolf在2007-3-28 18:44:27的发言:
用这中方法:
原理是
select top 10 *
from 表名 where id
not in(
select top 20 * from 表名 order by id asc
) order by id asc
注:每页10页~~
这是第三页~~~~
可以用存储过程~~~~
参数的运用~~~~~~~~
不使用存储过程或SQL语句的原因在于,SQL语句一些数据库的标准不一样。像top关键字Oracle中就使用不了,oracle中用rownumber。