分页sql语句模板
select * from (select t1.*,rownum rn from (select * from emp) t1 where rownum <= 10) where rn >= 5;
发布时间: 2013-08-01 15:23:18 作者: rapoo
分页sql语句模板
select * from (select t1.*,rownum rn from (select * from emp) t1 where rownum <= 10) where rn >= 5;