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

相關文章
相關標籤/搜索