Oracle和Mysql实现分页

Oracle分页能够经过下面两种方式web select * from ( select t.*, rownum RN from TABLE_NAME t ) where RN > 0 and RN <= 15` select * from ( select t.*, rownum RN from TABLE_NAME t ) where RN between 1 and 15 MySQL
相关文章
相关标签/搜索