Oracle分页SQL

1. select * from ( select  t.*, rownum RN from TABLE_NAME  t ) where RN > 0 and RN <= 15select

2. select * from ( select  t.*, rownum RN from TABLE_NAME  t ) where RN between 1 and 15

相关文章
相关标签/搜索