标签:
1. select * from ( select t.*, rownum RN from TABLE_NAME t ) where RN > 0 and RN <= 15
2. select * from ( select t.*, rownum RN from TABLE_NAME t ) where RN between 1 and 15
Oracle分页查询sql语句
原文地址:http://www.cnblogs.com/lxcmyf/p/5691522.html