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
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
转载于:https://www.cnblogs.com/lxcmyf/p/5691522.html